home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / src / binutils.252 / gas / config / tc-vax.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-14  |  90.3 KB  |  3,240 lines

  1. /* tc-vax.c - vax-specific -
  2.    Copyright (C) 1987, 1991, 1992, 1994 Free Software Foundation, Inc.
  3.  
  4.    This file is part of GAS, the GNU Assembler.
  5.  
  6.    GAS is free software; you can redistribute it and/or modify
  7.    it under the terms of the GNU General Public License as published by
  8.    the Free Software Foundation; either version 2, or (at your option)
  9.    any later version.
  10.  
  11.    GAS is distributed in the hope that it will be useful,
  12.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.    GNU General Public License for more details.
  15.  
  16.    You should have received a copy of the GNU General Public License
  17.    along with GAS; see the file COPYING.  If not, write to
  18.    the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. #include "as.h"
  21.  
  22. #include "vax-inst.h"
  23. #include "obstack.h"        /* For FRAG_APPEND_1_CHAR macro in "frags.h" */
  24.  
  25. /* These chars start a comment anywhere in a source file (except inside
  26.    another comment */
  27. const char comment_chars[] = "#";
  28.  
  29. /* These chars only start a comment at the beginning of a line. */
  30. /* Note that for the VAX the are the same as comment_chars above. */
  31. const char line_comment_chars[] = "#";
  32.  
  33. const char line_separator_chars[] = "";
  34.  
  35. /* Chars that can be used to separate mant from exp in floating point nums */
  36. const char EXP_CHARS[] = "eE";
  37.  
  38. /* Chars that mean this number is a floating point constant */
  39. /* as in 0f123.456 */
  40. /* or    0H1.234E-12 (see exp chars above) */
  41. const char FLT_CHARS[] = "dDfFgGhH";
  42.  
  43. /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
  44.    changed in read.c .  Ideally it shouldn't have to know about it at all,
  45.    but nothing is ideal around here.  */
  46.  
  47. /* Hold details of an operand expression */
  48. static expressionS exp_of_operand[VIT_MAX_OPERANDS];
  49. static segT seg_of_operand[VIT_MAX_OPERANDS];
  50.  
  51. /* A vax instruction after decoding. */
  52. static struct vit v;
  53.  
  54. /* Hold details of big operands. */
  55. LITTLENUM_TYPE big_operand_bits[VIT_MAX_OPERANDS][SIZE_OF_LARGE_NUMBER];
  56. FLONUM_TYPE float_operand[VIT_MAX_OPERANDS];
  57. /* Above is made to point into big_operand_bits by md_begin(). */
  58.  
  59. int flag_hash_long_names;    /* -+ */
  60. int flag_one;            /* -1 */
  61. int flag_show_after_trunc;    /* -H */
  62. int flag_no_hash_mixed_case;    /* -h NUM */
  63.  
  64. /*
  65.  * For VAX, relative addresses of "just the right length" are easy.
  66.  * The branch displacement is always the last operand, even in
  67.  * synthetic instructions.
  68.  * For VAX, we encode the relax_substateTs (in e.g. fr_substate) as:
  69.  *
  70.  *            4       3       2       1       0         bit number
  71.  *    ---/ /--+-------+-------+-------+-------+-------+
  72.  *        |     what state ?    |  how long ?    |
  73.  *    ---/ /--+-------+-------+-------+-------+-------+
  74.  *
  75.  * The "how long" bits are 00=byte, 01=word, 10=long.
  76.  * This is a Un*x convention.
  77.  * Not all lengths are legit for a given value of (what state).
  78.  * The "how long" refers merely to the displacement length.
  79.  * The address usually has some constant bytes in it as well.
  80.  *
  81.  
  82.  groups for VAX address relaxing.
  83.  
  84.  1.    "foo" pc-relative.
  85.  length of byte, word, long
  86.  
  87.  2a.    J<cond> where <cond> is a simple flag test.
  88.  length of byte, word, long.
  89.  VAX opcodes are:    (Hex)
  90.  bneq/bnequ    12
  91.  beql/beqlu    13
  92.  bgtr        14
  93.  bleq        15
  94.  bgeq        18
  95.  blss        19
  96.  bgtru        1a
  97.  blequ        1b
  98.  bvc        1c
  99.  bvs        1d
  100.  bgequ/bcc    1e
  101.  blssu/bcs    1f
  102.  Always, you complement 0th bit to reverse condition.
  103.  Always, 1-byte opcode, then 1-byte displacement.
  104.  
  105.  2b.    J<cond> where cond tests a memory bit.
  106.  length of byte, word, long.
  107.  Vax opcodes are:    (Hex)
  108.  bbs        e0
  109.  bbc        e1
  110.  bbss        e2
  111.  bbcs        e3
  112.  bbsc        e4
  113.  bbcc        e5
  114.  bbssi        e6
  115.  bbcci        e7
  116.  Always, you complement 0th bit to reverse condition.
  117.  Always, 1-byte opcde, longword-address, byte-address, 1-byte-displacement
  118.  
  119.  2c.    J<cond> where cond tests low-order memory bit
  120.  length of byte,word,long.
  121.  Vax opcodes are:    (Hex)
  122.  blbs        e8
  123.  blbc        e9
  124.  Always, you complement 0th bit to reverse condition.
  125.  Always, 1-byte opcode, longword-address, 1-byte displacement.
  126.  
  127.  3.    Jbs/Jbr.
  128.  length of byte,word,long.
  129.  Vax opcodes are:    (Hex)
  130.  bsbb        10
  131.  brb        11
  132.  These are like (2) but there is no condition to reverse.
  133.  Always, 1 byte opcode, then displacement/absolute.
  134.  
  135.  4a.    JacbX
  136.  length of word, long.
  137.  Vax opcodes are:    (Hex)
  138.  acbw        3d
  139.  acbf        4f
  140.  acbd        6f
  141.  abcb        9d
  142.  acbl        f1
  143.  acbg          4ffd
  144.  acbh          6ffd
  145.  Always, we cannot reverse the sense of the branch; we have a word
  146.  displacement.
  147.  The double-byte op-codes don't hurt: we never want to modify the
  148.  opcode, so we don't care how many bytes are between the opcode and
  149.  the operand.
  150.  
  151.  4b.    JXobXXX
  152.  length of long, long, byte.
  153.  Vax opcodes are:    (Hex)
  154.  aoblss        f2
  155.  aobleq        f3
  156.  sobgeq        f4
  157.  sobgtr        f5
  158.  Always, we cannot reverse the sense of the branch; we have a byte
  159.  displacement.
  160.  
  161.  The only time we need to modify the opcode is for class 2 instructions.
  162.  After relax() we may complement the lowest order bit of such instruction
  163.  to reverse sense of branch.
  164.  
  165.  For class 2 instructions, we store context of "where is the opcode literal".
  166.  We can change an opcode's lowest order bit without breaking anything else.
  167.  
  168.  We sometimes store context in the operand literal. This way we can figure out
  169.  after relax() what the original addressing mode was.
  170.  */
  171.  
  172. /* These displacements are relative to the start address of the
  173.    displacement.  The first letter is Byte, Word.  2nd letter is
  174.    Forward, Backward. */
  175. #define BF (1+ 127)
  176. #define BB (1+-128)
  177. #define WF (2+ 32767)
  178. #define WB (2+-32768)
  179. /* Dont need LF, LB because they always reach. [They are coded as 0.] */
  180.  
  181.  
  182. #define C(a,b) ENCODE_RELAX(a,b)
  183. /* This macro has no side-effects. */
  184. #define ENCODE_RELAX(what,length) (((what) << 2) + (length))
  185.  
  186. const relax_typeS
  187.   md_relax_table[] =
  188. {
  189.   {1, 1, 0, 0},            /* error sentinel   0,0    */
  190.   {1, 1, 0, 0},            /* unused        0,1    */
  191.   {1, 1, 0, 0},            /* unused        0,2    */
  192.   {1, 1, 0, 0},            /* unused        0,3    */
  193.   {BF + 1, BB + 1, 2, C (1, 1)},/* B^"foo"        1,0 */
  194.   {WF + 1, WB + 1, 3, C (1, 2)},/* W^"foo"        1,1 */
  195.   {0, 0, 5, 0},            /* L^"foo"        1,2 */
  196.   {1, 1, 0, 0},            /* unused        1,3 */
  197.   {BF, BB, 1, C (2, 1)},    /* b<cond> B^"foo"  2,0 */
  198.   {WF + 2, WB + 2, 4, C (2, 2)},/* br.+? brw X        2,1 */
  199.   {0, 0, 7, 0},            /* br.+? jmp X        2,2 */
  200.   {1, 1, 0, 0},            /* unused        2,3 */
  201.   {BF, BB, 1, C (3, 1)},    /* brb B^foo        3,0 */
  202.   {WF, WB, 2, C (3, 2)},    /* brw W^foo        3,1 */
  203.   {0, 0, 5, 0},            /* Jmp L^foo        3,2 */
  204.   {1, 1, 0, 0},            /* unused        3,3 */
  205.   {1, 1, 0, 0},            /* unused        4,0 */
  206.   {WF, WB, 2, C (4, 2)},    /* acb_ ^Wfoo        4,1 */
  207.   {0, 0, 10, 0},        /* acb_,br,jmp L^foo4,2 */
  208.   {1, 1, 0, 0},            /* unused        4,3 */
  209.   {BF, BB, 1, C (5, 1)},    /* Xob___,,foo      5,0 */
  210.   {WF + 4, WB + 4, 6, C (5, 2)},/* Xob.+2,brb.+3,brw5,1 */
  211.   {0, 0, 9, 0},            /* Xob.+2,brb.+6,jmp5,2 */
  212. };
  213.  
  214. #undef C
  215. #undef BF
  216. #undef BB
  217. #undef WF
  218. #undef WB
  219.  
  220. void float_cons ();
  221.  
  222. const pseudo_typeS md_pseudo_table[] =
  223. {
  224.   {"dfloat", float_cons, 'd'},
  225.   {"ffloat", float_cons, 'f'},
  226.   {"gfloat", float_cons, 'g'},
  227.   {"hfloat", float_cons, 'h'},
  228.   {0},
  229. };
  230.  
  231. #define STATE_PC_RELATIVE        (1)
  232. #define STATE_CONDITIONAL_BRANCH    (2)
  233. #define STATE_ALWAYS_BRANCH        (3)    /* includes BSB... */
  234. #define STATE_COMPLEX_BRANCH            (4)
  235. #define STATE_COMPLEX_HOP        (5)
  236.  
  237. #define STATE_BYTE            (0)
  238. #define STATE_WORD            (1)
  239. #define STATE_LONG            (2)
  240. #define STATE_UNDF            (3)    /* Symbol undefined in pass1 */
  241.  
  242.  
  243. #define min(a, b)    ((a) < (b) ? (a) : (b))
  244.  
  245. int flonum_gen2vax PARAMS ((char format_letter, FLONUM_TYPE * f,
  246.                 LITTLENUM_TYPE * words));
  247. static const char *vip_begin PARAMS ((int, char *, char *, char *));
  248. static void vip_op_defaults PARAMS ((char *immediate, char *indirect,
  249.                      char *displen));
  250. static void vip_op PARAMS ((char *, struct vop *));
  251. static void vip PARAMS ((struct vit *, char *));
  252.  
  253. void
  254. md_begin ()
  255. {
  256.   const char *errtxt;
  257.   FLONUM_TYPE *fP;
  258.   int i;
  259.  
  260.   if (errtxt = vip_begin (1, "$", "*", "`"))
  261.     {
  262.       as_fatal ("VIP_BEGIN error:%s", errtxt);
  263.     }
  264.  
  265.   for (i = 0, fP = float_operand;
  266.        fP < float_operand + VIT_MAX_OPERANDS;
  267.        i++, fP++)
  268.     {
  269.       fP->low = &big_operand_bits[i][0];
  270.       fP->high = &big_operand_bits[i][SIZE_OF_LARGE_NUMBER - 1];
  271.     }
  272. }
  273.  
  274. void
  275. md_number_to_chars (con, value, nbytes)
  276.      char con[];
  277.      valueT value;
  278.      int nbytes;
  279. {
  280.   number_to_chars_littleendian (con, value, nbytes);
  281. }
  282.  
  283. /* Fix up some data or instructions after we find out the value of a symbol
  284.    that they reference.  */
  285.  
  286. void                /* Knows about order of bytes in address. */
  287. md_apply_fix (fixP, value)
  288.      fixS *fixP;
  289.      long value;
  290. {
  291.   number_to_chars_littleendian (fixP->fx_where + fixP->fx_frag->fr_literal,
  292.                 (valueT) value, fixP->fx_size);
  293. }
  294.  
  295. long
  296. md_chars_to_number (con, nbytes)
  297.      unsigned char con[];    /* Low order byte 1st. */
  298.      int nbytes;        /* Number of bytes in the input. */
  299. {
  300.   long retval;
  301.   for (retval = 0, con += nbytes - 1; nbytes--; con--)
  302.     {
  303.       retval <<= BITS_PER_CHAR;
  304.       retval |= *con;
  305.     }
  306.   return retval;
  307. }
  308.  
  309. /* vax:md_assemble() emit frags for 1 instruction */
  310.  
  311. void
  312. md_assemble (instruction_string)
  313.      char *instruction_string;    /* A string: assemble 1 instruction. */
  314. {
  315.   /* Non-zero if operand expression's segment is not known yet. */
  316.   int is_undefined;
  317.  
  318.   int length_code;
  319.   char *p;
  320.   /* An operand. Scans all operands. */
  321.   struct vop *operandP;
  322.   char *save_input_line_pointer;
  323.             /* What used to live after an expression. */
  324.   char c_save;
  325.   /* 1: instruction_string bad for all passes. */
  326.   int goofed;
  327.   /* Points to slot just after last operand.  */
  328.   struct vop *end_operandP;
  329.   /* Points to expression values for this operand.  */
  330.   expressionS *expP;
  331.   segT *segP;
  332.  
  333.   /* These refer to an instruction operand expression. */
  334.   /* Target segment of the address.     */
  335.   segT to_seg;
  336.   valueT this_add_number;
  337.   /* Positive (minuend) symbol. */
  338.   struct symbol *this_add_symbol;
  339.   /* As a number. */
  340.   long opcode_as_number;
  341.   /* Least significant byte 1st. */
  342.   char *opcode_as_chars;
  343.   /* As an array of characters. */
  344.   /* Least significant byte 1st */
  345.   char *opcode_low_byteP;
  346.   /* length (bytes) meant by vop_short. */
  347.   int length;
  348.   /* 0, or 1 if '@' is in addressing mode. */
  349.   int at;
  350.   /* From vop_nbytes: vax_operand_width (in bytes) */
  351.   int nbytes;
  352.   FLONUM_TYPE *floatP;
  353.   LITTLENUM_TYPE literal_float[8];
  354.   /* Big enough for any floating point literal. */
  355.  
  356.   vip (&v, instruction_string);
  357.  
  358.   /*
  359.    * Now we try to find as many as_warn()s as we can. If we do any as_warn()s
  360.    * then goofed=1. Notice that we don't make any frags yet.
  361.    * Should goofed be 1, then this instruction will wedge in any pass,
  362.    * and we can safely flush it, without causing interpass symbol phase
  363.    * errors. That is, without changing label values in different passes.
  364.    */
  365.   if (goofed = (*v.vit_error))
  366.     {
  367.       as_warn ("Ignoring statement due to \"%s\"", v.vit_error);
  368.     }
  369.   /*
  370.    * We need to use expression() and friends, which require us to diddle
  371.    * input_line_pointer. So we save it and restore it later.
  372.    */
  373.   save_input_line_pointer = input_line_pointer;
  374.   for (operandP = v.vit_operand,
  375.        expP = exp_of_operand,
  376.        segP = seg_of_operand,
  377.        floatP = float_operand,
  378.        end_operandP = v.vit_operand + v.vit_operands;
  379.  
  380.        operandP < end_operandP;
  381.  
  382.        operandP++, expP++, segP++, floatP++)
  383.     {                /* for each operand */
  384.       if (operandP->vop_error)
  385.     {
  386.       as_warn ("Ignoring statement because \"%s\"", operandP->vop_error);
  387.       goofed = 1;
  388.     }
  389.       else
  390.     {
  391.       /* statement has no syntax goofs: lets sniff the expression */
  392.       int can_be_short = 0;    /* 1 if a bignum can be reduced to a short literal. */
  393.  
  394.       input_line_pointer = operandP->vop_expr_begin;
  395.       c_save = operandP->vop_expr_end[1];
  396.       operandP->vop_expr_end[1] = '\0';
  397.       /* If to_seg == SEG_PASS1, expression() will have set need_pass_2 = 1. */
  398.       *segP = expression (expP);
  399.       switch (expP->X_op)
  400.         {
  401.         case O_absent:
  402.           /* for BSD4.2 compatibility, missing expression is absolute 0 */
  403.           expP->X_op = O_constant;
  404.           expP->X_add_number = 0;
  405.           /* For SEG_ABSOLUTE, we shouldn't need to set X_op_symbol,
  406.          X_add_symbol to any particular value.  But, we will program
  407.          defensively. Since this situation occurs rarely so it costs
  408.          us little to do, and stops Dean worrying about the origin of
  409.          random bits in expressionS's.  */
  410.           expP->X_add_symbol = NULL;
  411.           expP->X_op_symbol = NULL;
  412.           break;
  413.  
  414.         case O_symbol:
  415.         case O_constant:
  416.           break;
  417.  
  418.         default:
  419.           /*
  420.            * Major bug. We can't handle the case of a
  421.            * SEG_OP expression in a VIT_OPCODE_SYNTHETIC
  422.            * variable-length instruction.
  423.            * We don't have a frag type that is smart enough to
  424.            * relax a SEG_OP, and so we just force all
  425.            * SEG_OPs to behave like SEG_PASS1s.
  426.            * Clearly, if there is a demand we can invent a new or
  427.            * modified frag type and then coding up a frag for this
  428.            * case will be easy. SEG_OP was invented for the
  429.            * .words after a CASE opcode, and was never intended for
  430.            * instruction operands.
  431.            */
  432.           need_pass_2 = 1;
  433.           as_warn ("Can't relocate expression");
  434.           break;
  435.  
  436.         case O_big:
  437.           /* Preserve the bits. */
  438.           if (expP->X_add_number > 0)
  439.         {
  440.           bignum_copy (generic_bignum, expP->X_add_number,
  441.                    floatP->low, SIZE_OF_LARGE_NUMBER);
  442.         }
  443.           else
  444.         {
  445.           know (expP->X_add_number < 0);
  446.           flonum_copy (&generic_floating_point_number,
  447.                    floatP);
  448.           if (strchr ("s i", operandP->vop_short))
  449.             {
  450.               /* Could possibly become S^# */
  451.               flonum_gen2vax (-expP->X_add_number, floatP, literal_float);
  452.               switch (-expP->X_add_number)
  453.             {
  454.             case 'f':
  455.               can_be_short =
  456.                 (literal_float[0] & 0xFC0F) == 0x4000
  457.                 && literal_float[1] == 0;
  458.               break;
  459.  
  460.             case 'd':
  461.               can_be_short =
  462.                 (literal_float[0] & 0xFC0F) == 0x4000
  463.                 && literal_float[1] == 0
  464.                 && literal_float[2] == 0
  465.                 && literal_float[3] == 0;
  466.               break;
  467.  
  468.             case 'g':
  469.               can_be_short =
  470.                 (literal_float[0] & 0xFF81) == 0x4000
  471.                 && literal_float[1] == 0
  472.                 && literal_float[2] == 0
  473.                 && literal_float[3] == 0;
  474.               break;
  475.  
  476.             case 'h':
  477.               can_be_short = ((literal_float[0] & 0xFFF8) == 0x4000
  478.                       && (literal_float[1] & 0xE000) == 0
  479.                       && literal_float[2] == 0
  480.                       && literal_float[3] == 0
  481.                       && literal_float[4] == 0
  482.                       && literal_float[5] == 0
  483.                       && literal_float[6] == 0
  484.                       && literal_float[7] == 0);
  485.               break;
  486.  
  487.             default:
  488.               BAD_CASE (-expP->X_add_number);
  489.               break;
  490.             }    /* switch (float type) */
  491.             }        /* if (could want to become S^#...) */
  492.         }        /* bignum or flonum ? */
  493.  
  494.           if (operandP->vop_short == 's'
  495.           || operandP->vop_short == 'i'
  496.           || (operandP->vop_short == ' '
  497.               && operandP->vop_reg == 0xF
  498.               && (operandP->vop_mode & 0xE) == 0x8))
  499.         {
  500.           /* Saw a '#'. */
  501.           if (operandP->vop_short == ' ')
  502.             {
  503.               /* We must chose S^ or I^. */
  504.               if (expP->X_add_number > 0)
  505.             {
  506.               /* Bignum: Short literal impossible. */
  507.               operandP->vop_short = 'i';
  508.               operandP->vop_mode = 8;
  509.               operandP->vop_reg = 0xF;    /* VAX PC. */
  510.             }
  511.               else
  512.             {
  513.               /* Flonum: Try to do it. */
  514.               if (can_be_short)
  515.                 {
  516.                   operandP->vop_short = 's';
  517.                   operandP->vop_mode = 0;
  518.                   operandP->vop_ndx = -1;
  519.                   operandP->vop_reg = -1;
  520.                   expP->X_op = O_constant;
  521.                 }
  522.               else
  523.                 {
  524.                   operandP->vop_short = 'i';
  525.                   operandP->vop_mode = 8;
  526.                   operandP->vop_reg = 0xF;    /* VAX PC */
  527.                 }
  528.             }    /* bignum or flonum ? */
  529.             }        /*  if #, but no S^ or I^ seen. */
  530.           /* No more ' ' case: either 's' or 'i'. */
  531.           if (operandP->vop_short == 's')
  532.             {
  533.               /* Wants to be a short literal. */
  534.               if (expP->X_add_number > 0)
  535.             {
  536.               as_warn ("Bignum not permitted in short literal. Immediate mode assumed.");
  537.               operandP->vop_short = 'i';
  538.               operandP->vop_mode = 8;
  539.               operandP->vop_reg = 0xF;    /* VAX PC. */
  540.             }
  541.               else
  542.             {
  543.               if (!can_be_short)
  544.                 {
  545.                   as_warn ("Can't do flonum short literal: immediate mode used.");
  546.                   operandP->vop_short = 'i';
  547.                   operandP->vop_mode = 8;
  548.                   operandP->vop_reg = 0xF;    /* VAX PC. */
  549.                 }
  550.               else
  551.                 {    /* Encode short literal now. */
  552.                   int temp = 0;
  553.  
  554.                   switch (-expP->X_add_number)
  555.                 {
  556.                 case 'f':
  557.                 case 'd':
  558.                   temp = literal_float[0] >> 4;
  559.                   break;
  560.  
  561.                 case 'g':
  562.                   temp = literal_float[0] >> 1;
  563.                   break;
  564.  
  565.                 case 'h':
  566.                   temp = ((literal_float[0] << 3) & 070)
  567.                     | ((literal_float[1] >> 13) & 07);
  568.                   break;
  569.  
  570.                 default:
  571.                   BAD_CASE (-expP->X_add_number);
  572.                   break;
  573.                 }
  574.  
  575.                   floatP->low[0] = temp & 077;
  576.                   floatP->low[1] = 0;
  577.                 }    /* if can be short literal float */
  578.             }    /* flonum or bignum ? */
  579.             }
  580.           else
  581.             {        /* I^# seen: set it up if float. */
  582.               if (expP->X_add_number < 0)
  583.             {
  584.               memcpy (floatP->low, literal_float, sizeof (literal_float));
  585.             }
  586.             }        /* if S^# seen. */
  587.         }
  588.           else
  589.         {
  590.           as_warn ("A bignum/flonum may not be a displacement: 0x%x used",
  591.                expP->X_add_number = 0x80000000);
  592.           /* Chosen so luser gets the most offset bits to patch later. */
  593.         }
  594.           expP->X_add_number = floatP->low[0]
  595.         | ((LITTLENUM_MASK & (floatP->low[1])) << LITTLENUM_NUMBER_OF_BITS);
  596.           /*
  597.            * For the O_big case we have:
  598.            * If vop_short == 's' then a short floating literal is in the
  599.            *    lowest 6 bits of floatP -> low [0], which is
  600.            *    big_operand_bits [---] [0].
  601.            * If vop_short == 'i' then the appropriate number of elements
  602.            *    of big_operand_bits [---] [...] are set up with the correct
  603.            *    bits.
  604.            * Also, just in case width is byte word or long, we copy the lowest
  605.            * 32 bits of the number to X_add_number.
  606.            */
  607.           break;
  608.         }
  609.       if (input_line_pointer != operandP->vop_expr_end + 1)
  610.         {
  611.           as_warn ("Junk at end of expression \"%s\"", input_line_pointer);
  612.           goofed = 1;
  613.         }
  614.       operandP->vop_expr_end[1] = c_save;
  615.     }
  616.     }                /* for(each operand) */
  617.  
  618.   input_line_pointer = save_input_line_pointer;
  619.  
  620.   if (need_pass_2 || goofed)
  621.     {
  622.       return;
  623.     }
  624.  
  625.  
  626.   /* Emit op-code. */
  627.   /* Remember where it is, in case we want to modify the op-code later. */
  628.   opcode_low_byteP = frag_more (v.vit_opcode_nbytes);
  629.   memcpy (opcode_low_byteP, v.vit_opcode, v.vit_opcode_nbytes);
  630.   opcode_as_number = md_chars_to_number (opcode_as_chars = v.vit_opcode, 4);
  631.   for (operandP = v.vit_operand,
  632.        expP = exp_of_operand,
  633.        segP = seg_of_operand,
  634.        floatP = float_operand,
  635.        end_operandP = v.vit_operand + v.vit_operands;
  636.  
  637.        operandP < end_operandP;
  638.  
  639.        operandP++,
  640.        floatP++,
  641.        segP++,
  642.        expP++)
  643.     {
  644.       if (operandP->vop_ndx >= 0)
  645.     {
  646.       /* indexed addressing byte */
  647.       /* Legality of indexed mode already checked: it is OK */
  648.       FRAG_APPEND_1_CHAR (0x40 + operandP->vop_ndx);
  649.     }            /* if(vop_ndx>=0) */
  650.  
  651.       /* Here to make main operand frag(s). */
  652.       this_add_number = expP->X_add_number;
  653.       this_add_symbol = expP->X_add_symbol;
  654.       to_seg = *segP;
  655.       is_undefined = (to_seg == SEG_UNKNOWN);
  656.       at = operandP->vop_mode & 1;
  657.       length = (operandP->vop_short == 'b'
  658.         ? 1 : (operandP->vop_short == 'w'
  659.                ? 2 : (operandP->vop_short == 'l'
  660.                   ? 4 : 0)));
  661.       nbytes = operandP->vop_nbytes;
  662.       if (operandP->vop_access == 'b')
  663.     {
  664.       if (to_seg == now_seg || is_undefined)
  665.         {
  666.           /* If is_undefined, then it might BECOME now_seg. */
  667.           if (nbytes)
  668.         {
  669.           p = frag_more (nbytes);
  670.           fix_new (frag_now, p - frag_now->fr_literal, nbytes,
  671.                this_add_symbol, this_add_number, 1, NO_RELOC);
  672.         }
  673.           else
  674.         {        /* to_seg==now_seg || to_seg == SEG_UNKNOWN */
  675.           /* nbytes==0 */
  676.           length_code = is_undefined ? STATE_UNDF : STATE_BYTE;
  677.           if (opcode_as_number & VIT_OPCODE_SPECIAL)
  678.             {
  679.               if (operandP->vop_width == VAX_WIDTH_UNCONDITIONAL_JUMP)
  680.             {
  681.               /* br or jsb */
  682.               frag_var (rs_machine_dependent, 5, 1,
  683.                 ENCODE_RELAX (STATE_ALWAYS_BRANCH, length_code),
  684.                     this_add_symbol, this_add_number,
  685.                     opcode_low_byteP);
  686.             }
  687.               else
  688.             {
  689.               if (operandP->vop_width == VAX_WIDTH_WORD_JUMP)
  690.                 {
  691.                   length_code = STATE_WORD;
  692.                   /* JF: There is no state_byte for this one! */
  693.                   frag_var (rs_machine_dependent, 10, 2,
  694.                     ENCODE_RELAX (STATE_COMPLEX_BRANCH, length_code),
  695.                     this_add_symbol, this_add_number,
  696.                     opcode_low_byteP);
  697.                 }
  698.               else
  699.                 {
  700.                   know (operandP->vop_width == VAX_WIDTH_BYTE_JUMP);
  701.                   frag_var (rs_machine_dependent, 9, 1,
  702.                   ENCODE_RELAX (STATE_COMPLEX_HOP, length_code),
  703.                     this_add_symbol, this_add_number,
  704.                     opcode_low_byteP);
  705.                 }
  706.             }
  707.             }
  708.           else
  709.             {
  710.               know (operandP->vop_width == VAX_WIDTH_CONDITIONAL_JUMP);
  711.               frag_var (rs_machine_dependent, 7, 1,
  712.                ENCODE_RELAX (STATE_CONDITIONAL_BRANCH, length_code),
  713.                 this_add_symbol, this_add_number,
  714.                 opcode_low_byteP);
  715.             }
  716.         }
  717.         }
  718.       else
  719.         {
  720.           /* to_seg != now_seg && to_seg != SEG_UNKNOWN */
  721.           /*
  722.            * --- SEG FLOAT MAY APPEAR HERE ----
  723.            */
  724.           if (to_seg == SEG_ABSOLUTE)
  725.         {
  726.           if (nbytes)
  727.             {
  728.               know (!(opcode_as_number & VIT_OPCODE_SYNTHETIC));
  729.               p = frag_more (nbytes);
  730.               /* Conventional relocation. */
  731.               fix_new (frag_now, p - frag_now->fr_literal,
  732.                    nbytes, &abs_symbol, this_add_number,
  733.                    1, NO_RELOC);
  734.             }
  735.           else
  736.             {
  737.               know (opcode_as_number & VIT_OPCODE_SYNTHETIC);
  738.               if (opcode_as_number & VIT_OPCODE_SPECIAL)
  739.             {
  740.               if (operandP->vop_width == VAX_WIDTH_UNCONDITIONAL_JUMP)
  741.                 {
  742.                   /* br or jsb */
  743.                   *opcode_low_byteP = opcode_as_chars[0] + VAX_WIDEN_LONG;
  744.                   know (opcode_as_chars[1] == 0);
  745.                   p = frag_more (5);
  746.                   p[0] = VAX_ABSOLUTE_MODE;    /* @#... */
  747.                   md_number_to_chars (p + 1, this_add_number, 4);
  748.                   /* Now (eg) JMP @#foo or JSB @#foo. */
  749.                 }
  750.               else
  751.                 {
  752.                   if (operandP->vop_width == VAX_WIDTH_WORD_JUMP)
  753.                 {
  754.                   p = frag_more (10);
  755.                   p[0] = 2;
  756.                   p[1] = 0;
  757.                   p[2] = VAX_BRB;
  758.                   p[3] = 6;
  759.                   p[4] = VAX_JMP;
  760.                   p[5] = VAX_ABSOLUTE_MODE;    /* @#... */
  761.                   md_number_to_chars (p + 6, this_add_number, 4);
  762.                   /*
  763.                    * Now (eg)    ACBx    1f
  764.                    *        BRB    2f
  765.                    *    1:    JMP    @#foo
  766.                    *    2:
  767.                    */
  768.                 }
  769.                   else
  770.                 {
  771.                   know (operandP->vop_width == VAX_WIDTH_BYTE_JUMP);
  772.                   p = frag_more (9);
  773.                   p[0] = 2;
  774.                   p[1] = VAX_BRB;
  775.                   p[2] = 6;
  776.                   p[3] = VAX_JMP;
  777.                   p[4] = VAX_PC_RELATIVE_MODE + 1;    /* @#... */
  778.                   md_number_to_chars (p + 5, this_add_number, 4);
  779.                   /*
  780.                    * Now (eg)    xOBxxx    1f
  781.                    *        BRB    2f
  782.                    *    1:    JMP    @#foo
  783.                    *    2:
  784.                    */
  785.                 }
  786.                 }
  787.             }
  788.               else
  789.             {
  790.               /* b<cond> */
  791.               *opcode_low_byteP ^= 1;
  792.               /* To reverse the condition in a VAX branch,
  793.                  complement the lowest order bit. */
  794.               p = frag_more (7);
  795.               p[0] = 6;
  796.               p[1] = VAX_JMP;
  797.               p[2] = VAX_ABSOLUTE_MODE;    /* @#... */
  798.               md_number_to_chars (p + 3, this_add_number, 4);
  799.               /*
  800.                * Now (eg)    BLEQ    1f
  801.                *        JMP    @#foo
  802.                *    1:
  803.                */
  804.             }
  805.             }
  806.         }
  807.           else
  808.         {
  809.           /* to_seg != now_seg && to_seg != SEG_UNKNOWN && to_Seg != SEG_ABSOLUTE */
  810.           if (nbytes > 0)
  811.             {
  812.               /* Pc-relative. Conventional relocation. */
  813.               know (!(opcode_as_number & VIT_OPCODE_SYNTHETIC));
  814.               p = frag_more (nbytes);
  815.               fix_new (frag_now, p - frag_now->fr_literal,
  816.                    nbytes, &abs_symbol, this_add_number,
  817.                    1, NO_RELOC);
  818.             }
  819.           else
  820.             {
  821.               know (opcode_as_number & VIT_OPCODE_SYNTHETIC);
  822.               if (opcode_as_number & VIT_OPCODE_SPECIAL)
  823.             {
  824.               if (operandP->vop_width == VAX_WIDTH_UNCONDITIONAL_JUMP)
  825.                 {
  826.                   /* br or jsb */
  827.                   know (opcode_as_chars[1] == 0);
  828.                   *opcode_low_byteP = opcode_as_chars[0] + VAX_WIDEN_LONG;
  829.                   p = frag_more (5);
  830.                   p[0] = VAX_PC_RELATIVE_MODE;
  831.                   fix_new (frag_now,
  832.                        p + 1 - frag_now->fr_literal, 4,
  833.                        this_add_symbol,
  834.                        this_add_number, 1, NO_RELOC);
  835.                   /* Now eg JMP foo or JSB foo. */
  836.                 }
  837.               else
  838.                 {
  839.                   if (operandP->vop_width == VAX_WIDTH_WORD_JUMP)
  840.                 {
  841.                   p = frag_more (10);
  842.                   p[0] = 0;
  843.                   p[1] = 2;
  844.                   p[2] = VAX_BRB;
  845.                   p[3] = 6;
  846.                   p[4] = VAX_JMP;
  847.                   p[5] = VAX_PC_RELATIVE_MODE;
  848.                   fix_new (frag_now,
  849.                        p + 6 - frag_now->fr_literal, 4,
  850.                        this_add_symbol,
  851.                        this_add_number, 1, NO_RELOC);
  852.                   /*
  853.                    * Now (eg)    ACBx    1f
  854.                    *        BRB    2f
  855.                    *    1:    JMP    foo
  856.                    *    2:
  857.                    */
  858.                 }
  859.                   else
  860.                 {
  861.                   know (operandP->vop_width == VAX_WIDTH_BYTE_JUMP);
  862.                   p = frag_more (10);
  863.                   p[0] = 2;
  864.                   p[1] = VAX_BRB;
  865.                   p[2] = 6;
  866.                   p[3] = VAX_JMP;
  867.                   p[4] = VAX_PC_RELATIVE_MODE;
  868.                   fix_new (frag_now,
  869.                        p + 5 - frag_now->fr_literal,
  870.                        4, this_add_symbol,
  871.                        this_add_number, 1, NO_RELOC);
  872.                   /*
  873.                    * Now (eg)    xOBxxx    1f
  874.                    *        BRB    2f
  875.                    *    1:    JMP    foo
  876.                    *    2:
  877.                    */
  878.                 }
  879.                 }
  880.             }
  881.               else
  882.             {
  883.               know (operandP->vop_width == VAX_WIDTH_CONDITIONAL_JUMP);
  884.               *opcode_low_byteP ^= 1;    /* Reverse branch condition. */
  885.               p = frag_more (7);
  886.               p[0] = 6;
  887.               p[1] = VAX_JMP;
  888.               p[2] = VAX_PC_RELATIVE_MODE;
  889.               fix_new (frag_now, p + 3 - frag_now->fr_literal,
  890.                    4, this_add_symbol,
  891.                    this_add_number, 1, NO_RELOC);
  892.             }
  893.             }
  894.         }
  895.         }
  896.     }
  897.       else
  898.     {
  899.       know (operandP->vop_access != 'b');    /* So it is ordinary operand. */
  900.       know (operandP->vop_access != ' ');    /* ' ' target-independent: elsewhere. */
  901.       know (operandP->vop_access == 'a'
  902.         || operandP->vop_access == 'm'
  903.         || operandP->vop_access == 'r'
  904.         || operandP->vop_access == 'v'
  905.         || operandP->vop_access == 'w');
  906.       if (operandP->vop_short == 's')
  907.         {
  908.           if (to_seg == SEG_ABSOLUTE)
  909.         {
  910.           if (this_add_number < 0 || this_add_number >= 64)
  911.             {
  912.               as_warn ("Short literal overflow(%d.), immediate mode assumed.", this_add_number);
  913.               operandP->vop_short = 'i';
  914.               operandP->vop_mode = 8;
  915.               operandP->vop_reg = 0xF;
  916.             }
  917.         }
  918.           else
  919.         {
  920.           as_warn ("Forced short literal to immediate mode. now_seg=%s to_seg=%s",
  921.                segment_name (now_seg), segment_name (to_seg));
  922.           operandP->vop_short = 'i';
  923.           operandP->vop_mode = 8;
  924.           operandP->vop_reg = 0xF;
  925.         }
  926.         }
  927.       if (operandP->vop_reg >= 0 && (operandP->vop_mode < 8
  928.           || (operandP->vop_reg != 0xF && operandP->vop_mode < 10)))
  929.         {
  930.           /* One byte operand. */
  931.           know (operandP->vop_mode > 3);
  932.           FRAG_APPEND_1_CHAR (operandP->vop_mode << 4 | operandP->vop_reg);
  933.           /* All 1-bytes except S^# happen here. */
  934.         }
  935.       else
  936.         {
  937.           /* {@}{q^}foo{(Rn)} or S^#foo */
  938.           if (operandP->vop_reg == -1 && operandP->vop_short != 's')
  939.         {
  940.           /* "{@}{q^}foo" */
  941.           if (to_seg == now_seg)
  942.             {
  943.               if (length == 0)
  944.             {
  945.               know (operandP->vop_short == ' ');
  946.               p = frag_var (rs_machine_dependent, 10, 2,
  947.                    ENCODE_RELAX (STATE_PC_RELATIVE, STATE_BYTE),
  948.                     this_add_symbol, this_add_number,
  949.                     opcode_low_byteP);
  950.               know (operandP->vop_mode == 10 + at);
  951.               *p = at << 4;
  952.               /* At is the only context we need to carry
  953.                  to other side of relax() process.  Must
  954.                  be in the correct bit position of VAX
  955.                  operand spec. byte. */
  956.             }
  957.               else
  958.             {
  959.               know (length);
  960.               know (operandP->vop_short != ' ');
  961.               p = frag_more (length + 1);
  962.               p[0] = 0xF | ((at + "?\12\14?\16"[length]) << 4);
  963.               fix_new (frag_now, p + 1 - frag_now->fr_literal,
  964.                    length, this_add_symbol,
  965.                    this_add_number, 1, NO_RELOC);
  966.             }
  967.             }
  968.           else
  969.             {        /* to_seg != now_seg */
  970.               if (this_add_symbol == NULL)
  971.             {
  972.               know (to_seg == SEG_ABSOLUTE);
  973.               /* Do @#foo: simpler relocation than foo-.(pc) anyway. */
  974.               p = frag_more (5);
  975.               p[0] = VAX_ABSOLUTE_MODE;    /* @#... */
  976.               md_number_to_chars (p + 1, this_add_number, 4);
  977.               if (length && length != 4)
  978.                 {
  979.                   as_warn ("Length specification ignored. Address mode 9F used");
  980.                 }
  981.             }
  982.               else
  983.             {
  984.               /* {@}{q^}other_seg */
  985.               know ((length == 0 && operandP->vop_short == ' ')
  986.                  || (length > 0 && operandP->vop_short != ' '));
  987.               if (is_undefined)
  988.                 {
  989.                   /*
  990.                    * We have a SEG_UNKNOWN symbol. It might
  991.                    * turn out to be in the same segment as
  992.                    * the instruction, permitting relaxation.
  993.                    */
  994.                   p = frag_var (rs_machine_dependent, 5, 2,
  995.                    ENCODE_RELAX (STATE_PC_RELATIVE, STATE_UNDF),
  996.                         this_add_symbol, this_add_number,
  997.                         0);
  998.                   p[0] = at << 4;
  999.                 }
  1000.               else
  1001.                 {
  1002.                   if (length == 0)
  1003.                 {
  1004.                   know (operandP->vop_short == ' ');
  1005.                   length = 4;    /* Longest possible. */
  1006.                 }
  1007.                   p = frag_more (length + 1);
  1008.                   p[0] = 0xF | ((at + "?\12\14?\16"[length]) << 4);
  1009.                   md_number_to_chars (p + 1, this_add_number, length);
  1010.                   fix_new (frag_now,
  1011.                        p + 1 - frag_now->fr_literal,
  1012.                        length, this_add_symbol,
  1013.                        this_add_number, 1, NO_RELOC);
  1014.                 }
  1015.             }
  1016.             }
  1017.         }
  1018.           else
  1019.         {
  1020.           /* {@}{q^}foo(Rn) or S^# or I^# or # */
  1021.           if (operandP->vop_mode < 0xA)
  1022.             {
  1023.               /* # or S^# or I^# */
  1024.               if (length == 0
  1025.               && to_seg == SEG_ABSOLUTE && (expP->X_op != O_big)
  1026.               && operandP->vop_mode == 8    /* No '@'. */
  1027.               && this_add_number < 64
  1028.               && this_add_number >= 0)
  1029.             {
  1030.               operandP->vop_short = 's';
  1031.             }
  1032.               if (operandP->vop_short == 's')
  1033.             {
  1034.               FRAG_APPEND_1_CHAR (this_add_number);
  1035.             }
  1036.               else
  1037.             {
  1038.               /* I^#... */
  1039.               know (nbytes);
  1040.               p = frag_more (nbytes + 1);
  1041.               know (operandP->vop_reg == 0xF);
  1042.               p[0] = (operandP->vop_mode << 4) | 0xF;
  1043.               if ((to_seg == SEG_ABSOLUTE) && (expP->X_op != O_big))
  1044.                 {
  1045.                   /*
  1046.                    * If nbytes > 4, then we are scrod. We
  1047.                    * don't know if the high order bytes
  1048.                    * are to be 0xFF or 0x00.  BSD4.2 & RMS
  1049.                    * say use 0x00. OK --- but this
  1050.                    * assembler needs ANOTHER rewrite to
  1051.                    * cope properly with this bug. */
  1052.                   md_number_to_chars (p + 1, this_add_number, min (4, nbytes));
  1053.                   if (nbytes > 4)
  1054.                 {
  1055.                   memset (p + 5, '\0', nbytes - 4);
  1056.                 }
  1057.                 }
  1058.               else
  1059.                 {
  1060.                   if (expP->X_op == O_big)
  1061.                 {
  1062.                   /*
  1063.                    * Problem here is to get the bytes
  1064.                    * in the right order.  We stored
  1065.                    * our constant as LITTLENUMs, not
  1066.                    * bytes. */
  1067.                   LITTLENUM_TYPE *lP;
  1068.  
  1069.                   lP = floatP->low;
  1070.                   if (nbytes & 1)
  1071.                     {
  1072.                       know (nbytes == 1);
  1073.                       p[1] = *lP;
  1074.                     }
  1075.                   else
  1076.                     {
  1077.                       for (p++; nbytes; nbytes -= 2, p += 2, lP++)
  1078.                     {
  1079.                       md_number_to_chars (p, *lP, 2);
  1080.                     }
  1081.                     }
  1082.                 }
  1083.                   else
  1084.                 {
  1085.                   fix_new (frag_now, p + 1 - frag_now->fr_literal,
  1086.                        nbytes, this_add_symbol,
  1087.                        this_add_number, 0, NO_RELOC);
  1088.                 }
  1089.                 }
  1090.             }
  1091.             }
  1092.           else
  1093.             {        /* {@}{q^}foo(Rn) */
  1094.               know ((length == 0 && operandP->vop_short == ' ')
  1095.                 || (length > 0 && operandP->vop_short != ' '));
  1096.               if (length == 0)
  1097.             {
  1098.               if (to_seg == SEG_ABSOLUTE)
  1099.                 {
  1100.                   long test;
  1101.  
  1102.                   test = this_add_number;
  1103.  
  1104.                   if (test < 0)
  1105.                 test = ~test;
  1106.  
  1107.                   length = test & 0xffff8000 ? 4
  1108.                 : test & 0xffffff80 ? 2
  1109.                 : 1;
  1110.                 }
  1111.               else
  1112.                 {
  1113.                   length = 4;
  1114.                 }
  1115.             }
  1116.               p = frag_more (1 + length);
  1117.               know (operandP->vop_reg >= 0);
  1118.               p[0] = operandP->vop_reg
  1119.             | ((at | "?\12\14?\16"[length]) << 4);
  1120.               if (to_seg == SEG_ABSOLUTE)
  1121.             {
  1122.               md_number_to_chars (p + 1, this_add_number, length);
  1123.             }
  1124.               else
  1125.             {
  1126.               fix_new (frag_now, p + 1 - frag_now->fr_literal,
  1127.                    length, this_add_symbol,
  1128.                    this_add_number, 0, NO_RELOC);
  1129.             }
  1130.             }
  1131.         }
  1132.         }            /* if(single-byte-operand) */
  1133.     }
  1134.     }                /* for(operandP) */
  1135. }                /* vax_assemble() */
  1136.  
  1137. /*
  1138.  *            md_estimate_size_before_relax()
  1139.  *
  1140.  * Called just before relax().
  1141.  * Any symbol that is now undefined will not become defined.
  1142.  * Return the correct fr_subtype in the frag.
  1143.  * Return the initial "guess for fr_var" to caller.
  1144.  * The guess for fr_var is ACTUALLY the growth beyond fr_fix.
  1145.  * Whatever we do to grow fr_fix or fr_var contributes to our returned value.
  1146.  * Although it may not be explicit in the frag, pretend fr_var starts with a
  1147.  * 0 value.
  1148.  */
  1149. int
  1150. md_estimate_size_before_relax (fragP, segment)
  1151.      fragS *fragP;
  1152.      segT segment;
  1153. {
  1154.   char *p;
  1155.   int old_fr_fix;
  1156.  
  1157.   old_fr_fix = fragP->fr_fix;
  1158.   switch (fragP->fr_subtype)
  1159.     {
  1160.     case ENCODE_RELAX (STATE_PC_RELATIVE, STATE_UNDF):
  1161.       if (S_GET_SEGMENT (fragP->fr_symbol) == segment)
  1162.     {            /* A relaxable case. */
  1163.       fragP->fr_subtype = ENCODE_RELAX (STATE_PC_RELATIVE, STATE_BYTE);
  1164.     }
  1165.       else
  1166.     {
  1167.       p = fragP->fr_literal + old_fr_fix;
  1168.       p[0] |= VAX_PC_RELATIVE_MODE;    /* Preserve @ bit. */
  1169.       fragP->fr_fix += 1 + 4;
  1170.       fix_new (fragP, old_fr_fix + 1, 4, fragP->fr_symbol,
  1171.            fragP->fr_offset, 1, NO_RELOC);
  1172.       frag_wane (fragP);
  1173.     }
  1174.       break;
  1175.  
  1176.     case ENCODE_RELAX (STATE_CONDITIONAL_BRANCH, STATE_UNDF):
  1177.       if (S_GET_SEGMENT (fragP->fr_symbol) == segment)
  1178.     {
  1179.       fragP->fr_subtype = ENCODE_RELAX (STATE_CONDITIONAL_BRANCH, STATE_BYTE);
  1180.     }
  1181.       else
  1182.     {
  1183.       p = fragP->fr_literal + old_fr_fix;
  1184.       *fragP->fr_opcode ^= 1;    /* Reverse sense of branch. */
  1185.       p[0] = 6;
  1186.       p[1] = VAX_JMP;
  1187.       p[2] = VAX_PC_RELATIVE_MODE;    /* ...(PC) */
  1188.       fragP->fr_fix += 1 + 1 + 1 + 4;
  1189.       fix_new (fragP, old_fr_fix + 3, 4, fragP->fr_symbol,
  1190.            fragP->fr_offset, 1, NO_RELOC);
  1191.       frag_wane (fragP);
  1192.     }
  1193.       break;
  1194.  
  1195.     case ENCODE_RELAX (STATE_COMPLEX_BRANCH, STATE_UNDF):
  1196.       if (S_GET_SEGMENT (fragP->fr_symbol) == segment)
  1197.     {
  1198.       fragP->fr_subtype = ENCODE_RELAX (STATE_COMPLEX_BRANCH, STATE_WORD);
  1199.     }
  1200.       else
  1201.     {
  1202.       p = fragP->fr_literal + old_fr_fix;
  1203.       p[0] = 2;
  1204.       p[1] = 0;
  1205.       p[2] = VAX_BRB;
  1206.       p[3] = 6;
  1207.       p[4] = VAX_JMP;
  1208.       p[5] = VAX_PC_RELATIVE_MODE;    /* ...(pc) */
  1209.       fragP->fr_fix += 2 + 2 + 1 + 1 + 4;
  1210.       fix_new (fragP, old_fr_fix + 6, 4, fragP->fr_symbol,
  1211.            fragP->fr_offset, 1, NO_RELOC);
  1212.       frag_wane (fragP);
  1213.     }
  1214.       break;
  1215.  
  1216.     case ENCODE_RELAX (STATE_COMPLEX_HOP, STATE_UNDF):
  1217.       if (S_GET_SEGMENT (fragP->fr_symbol) == segment)
  1218.     {
  1219.       fragP->fr_subtype = ENCODE_RELAX (STATE_COMPLEX_HOP, STATE_BYTE);
  1220.     }
  1221.       else
  1222.     {
  1223.       p = fragP->fr_literal + old_fr_fix;
  1224.       p[0] = 2;
  1225.       p[1] = VAX_BRB;
  1226.       p[2] = 6;
  1227.       p[3] = VAX_JMP;
  1228.       p[4] = VAX_PC_RELATIVE_MODE;    /* ...(pc) */
  1229.       fragP->fr_fix += 1 + 2 + 1 + 1 + 4;
  1230.       fix_new (fragP, old_fr_fix + 5, 4, fragP->fr_symbol,
  1231.            fragP->fr_offset, 1, NO_RELOC);
  1232.       frag_wane (fragP);
  1233.     }
  1234.       break;
  1235.  
  1236.     case ENCODE_RELAX (STATE_ALWAYS_BRANCH, STATE_UNDF):
  1237.       if (S_GET_SEGMENT (fragP->fr_symbol) == segment)
  1238.     {
  1239.       fragP->fr_subtype = ENCODE_RELAX (STATE_ALWAYS_BRANCH, STATE_BYTE);
  1240.     }
  1241.       else
  1242.     {
  1243.       p = fragP->fr_literal + old_fr_fix;
  1244.       *fragP->fr_opcode += VAX_WIDEN_LONG;
  1245.       p[0] = VAX_PC_RELATIVE_MODE;    /* ...(PC) */
  1246.       fragP->fr_fix += 1 + 4;
  1247.       fix_new (fragP, old_fr_fix + 1, 4, fragP->fr_symbol,
  1248.            fragP->fr_offset, 1, NO_RELOC);
  1249.       frag_wane (fragP);
  1250.     }
  1251.       break;
  1252.  
  1253.     default:
  1254.       break;
  1255.     }
  1256.   return (fragP->fr_var + fragP->fr_fix - old_fr_fix);
  1257. }                /* md_estimate_size_before_relax() */
  1258.  
  1259. /*
  1260.  *            md_convert_frag();
  1261.  *
  1262.  * Called after relax() is finished.
  1263.  * In:    Address of frag.
  1264.  *    fr_type == rs_machine_dependent.
  1265.  *    fr_subtype is what the address relaxed to.
  1266.  *
  1267.  * Out:    Any fixSs and constants are set up.
  1268.  *    Caller will turn frag into a ".space 0".
  1269.  */
  1270. void
  1271. md_convert_frag (headers, fragP)
  1272.      object_headers *headers;
  1273.      fragS *fragP;
  1274. {
  1275.   char *addressP;        /* -> _var to change. */
  1276.   char *opcodeP;        /* -> opcode char(s) to change. */
  1277.   short int length_code;    /* 2=long 1=word 0=byte */
  1278.   short int extension = 0;    /* Size of relaxed address. */
  1279.   /* Added to fr_fix: incl. ALL var chars. */
  1280.   symbolS *symbolP;
  1281.   long where;
  1282.   long address_of_var;
  1283.   /* Where, in file space, is _var of *fragP? */
  1284.   long target_address = 0;
  1285.   /* Where, in file space, does addr point? */
  1286.  
  1287.   know (fragP->fr_type == rs_machine_dependent);
  1288.   length_code = fragP->fr_subtype & 3;    /* depends on ENCODE_RELAX() */
  1289.   know (length_code >= 0 && length_code < 3);
  1290.   where = fragP->fr_fix;
  1291.   addressP = fragP->fr_literal + where;
  1292.   opcodeP = fragP->fr_opcode;
  1293.   symbolP = fragP->fr_symbol;
  1294.   know (symbolP);
  1295.   target_address = S_GET_VALUE (symbolP) + fragP->fr_offset;
  1296.   address_of_var = fragP->fr_address + where;
  1297.  
  1298.   switch (fragP->fr_subtype)
  1299.     {
  1300.  
  1301.     case ENCODE_RELAX (STATE_PC_RELATIVE, STATE_BYTE):
  1302.       know (*addressP == 0 || *addressP == 0x10);    /* '@' bit. */
  1303.       addressP[0] |= 0xAF;    /* Byte displacement. */
  1304.       addressP[1] = target_address - (address_of_var + 2);
  1305.       extension = 2;
  1306.       break;
  1307.  
  1308.     case ENCODE_RELAX (STATE_PC_RELATIVE, STATE_WORD):
  1309.       know (*addressP == 0 || *addressP == 0x10);    /* '@' bit. */
  1310.       addressP[0] |= 0xCF;    /* Word displacement. */
  1311.       md_number_to_chars (addressP + 1, target_address - (address_of_var + 3), 2);
  1312.       extension = 3;
  1313.       break;
  1314.  
  1315.     case ENCODE_RELAX (STATE_PC_RELATIVE, STATE_LONG):
  1316.       know (*addressP == 0 || *addressP == 0x10);    /* '@' bit. */
  1317.       addressP[0] |= 0xEF;    /* Long word displacement. */
  1318.       md_number_to_chars (addressP + 1, target_address - (address_of_var + 5), 4);
  1319.       extension = 5;
  1320.       break;
  1321.  
  1322.     case ENCODE_RELAX (STATE_CONDITIONAL_BRANCH, STATE_BYTE):
  1323.       addressP[0] = target_address - (address_of_var + 1);
  1324.       extension = 1;
  1325.       break;
  1326.  
  1327.     case ENCODE_RELAX (STATE_CONDITIONAL_BRANCH, STATE_WORD):
  1328.       opcodeP[0] ^= 1;        /* Reverse sense of test. */
  1329.       addressP[0] = 3;
  1330.       addressP[1] = VAX_BRB + VAX_WIDEN_WORD;
  1331.       md_number_to_chars (addressP + 2, target_address - (address_of_var + 4), 2);
  1332.       extension = 4;
  1333.       break;
  1334.  
  1335.     case ENCODE_RELAX (STATE_CONDITIONAL_BRANCH, STATE_LONG):
  1336.       opcodeP[0] ^= 1;        /* Reverse sense of test. */
  1337.       addressP[0] = 6;
  1338.       addressP[1] = VAX_JMP;
  1339.       addressP[2] = VAX_PC_RELATIVE_MODE;
  1340.       md_number_to_chars (addressP + 3, target_address, 4);
  1341.       extension = 7;
  1342.       break;
  1343.  
  1344.     case ENCODE_RELAX (STATE_ALWAYS_BRANCH, STATE_BYTE):
  1345.       addressP[0] = target_address - (address_of_var + 1);
  1346.       extension = 1;
  1347.       break;
  1348.  
  1349.     case ENCODE_RELAX (STATE_ALWAYS_BRANCH, STATE_WORD):
  1350.       opcodeP[0] += VAX_WIDEN_WORD;    /* brb -> brw, bsbb -> bsbw */
  1351.       md_number_to_chars (addressP, target_address - (address_of_var + 2), 2);
  1352.       extension = 2;
  1353.       break;
  1354.  
  1355.     case ENCODE_RELAX (STATE_ALWAYS_BRANCH, STATE_LONG):
  1356.       opcodeP[0] += VAX_WIDEN_LONG;    /* brb -> jmp, bsbb -> jsb */
  1357.       addressP[0] = VAX_PC_RELATIVE_MODE;
  1358.       md_number_to_chars (addressP + 1, target_address - (address_of_var + 5), 4);
  1359.       extension = 5;
  1360.       break;
  1361.  
  1362.     case ENCODE_RELAX (STATE_COMPLEX_BRANCH, STATE_WORD):
  1363.       md_number_to_chars (addressP, target_address - (address_of_var + 2), 2);
  1364.       extension = 2;
  1365.       break;
  1366.  
  1367.     case ENCODE_RELAX (STATE_COMPLEX_BRANCH, STATE_LONG):
  1368.       addressP[0] = 2;
  1369.       addressP[1] = 0;
  1370.       addressP[2] = VAX_BRB;
  1371.       addressP[3] = 6;
  1372.       addressP[4] = VAX_JMP;
  1373.       addressP[5] = VAX_PC_RELATIVE_MODE;
  1374.       md_number_to_chars (addressP + 6, target_address, 4);
  1375.       extension = 10;
  1376.       break;
  1377.  
  1378.     case ENCODE_RELAX (STATE_COMPLEX_HOP, STATE_BYTE):
  1379.       addressP[0] = target_address - (address_of_var + 1);
  1380.       extension = 1;
  1381.       break;
  1382.  
  1383.     case ENCODE_RELAX (STATE_COMPLEX_HOP, STATE_WORD):
  1384.       addressP[0] = 2;
  1385.       addressP[1] = VAX_BRB;
  1386.       addressP[2] = 3;
  1387.       addressP[3] = VAX_BRW;
  1388.       md_number_to_chars (addressP + 4, target_address - (address_of_var + 6), 2);
  1389.       extension = 6;
  1390.       break;
  1391.  
  1392.     case ENCODE_RELAX (STATE_COMPLEX_HOP, STATE_LONG):
  1393.       addressP[0] = 2;
  1394.       addressP[1] = VAX_BRB;
  1395.       addressP[2] = 6;
  1396.       addressP[3] = VAX_JMP;
  1397.       addressP[4] = VAX_PC_RELATIVE_MODE;
  1398.       md_number_to_chars (addressP + 5, target_address, 4);
  1399.       extension = 9;
  1400.       break;
  1401.  
  1402.     default:
  1403.       BAD_CASE (fragP->fr_subtype);
  1404.       break;
  1405.     }
  1406.   fragP->fr_fix += extension;
  1407. }                /* md_convert_frag() */
  1408.  
  1409. /* Translate internal format of relocation info into target format.
  1410.  
  1411.    On vax: first 4 bytes are normal unsigned long, next three bytes
  1412.    are symbolnum, least sig. byte first.  Last byte is broken up with
  1413.    the upper nibble as nuthin, bit 3 as extern, bits 2 & 1 as length, and
  1414.    bit 0 as pcrel. */
  1415. #ifdef comment
  1416. void
  1417. md_ri_to_chars (the_bytes, ri)
  1418.      char *the_bytes;
  1419.      struct reloc_info_generic ri;
  1420. {
  1421.   /* this is easy */
  1422.   md_number_to_chars (the_bytes, ri.r_address, sizeof (ri.r_address));
  1423.   /* now the fun stuff */
  1424.   the_bytes[6] = (ri.r_symbolnum >> 16) & 0x0ff;
  1425.   the_bytes[5] = (ri.r_symbolnum >> 8) & 0x0ff;
  1426.   the_bytes[4] = ri.r_symbolnum & 0x0ff;
  1427.   the_bytes[7] = (((ri.r_extern << 3) & 0x08) | ((ri.r_length << 1) & 0x06) |
  1428.           ((ri.r_pcrel << 0) & 0x01)) & 0x0F;
  1429. }
  1430.  
  1431. #endif /* comment */
  1432.  
  1433. void 
  1434. tc_aout_fix_to_chars (where, fixP, segment_address_in_file)
  1435.      char *where;
  1436.      fixS *fixP;
  1437.      relax_addressT segment_address_in_file;
  1438. {
  1439.   /*
  1440.    * In: length of relocation (or of address) in chars: 1, 2 or 4.
  1441.    * Out: GNU LD relocation length code: 0, 1, or 2.
  1442.    */
  1443.  
  1444.   static const unsigned char nbytes_r_length[] = {42, 0, 1, 42, 2};
  1445.   long r_symbolnum;
  1446.  
  1447.   know (fixP->fx_addsy != NULL);
  1448.  
  1449.   md_number_to_chars (where,
  1450.        fixP->fx_frag->fr_address + fixP->fx_where - segment_address_in_file,
  1451.               4);
  1452.  
  1453.   r_symbolnum = (S_IS_DEFINED (fixP->fx_addsy)
  1454.          ? S_GET_TYPE (fixP->fx_addsy)
  1455.          : fixP->fx_addsy->sy_number);
  1456.  
  1457.   where[6] = (r_symbolnum >> 16) & 0x0ff;
  1458.   where[5] = (r_symbolnum >> 8) & 0x0ff;
  1459.   where[4] = r_symbolnum & 0x0ff;
  1460.   where[7] = ((((!S_IS_DEFINED (fixP->fx_addsy)) << 3) & 0x08)
  1461.           | ((nbytes_r_length[fixP->fx_size] << 1) & 0x06)
  1462.           | (((fixP->fx_pcrel << 0) & 0x01) & 0x0f));
  1463. }
  1464.  
  1465. /*
  1466.  *       BUGS, GRIPES,  APOLOGIA, etc.
  1467.  *
  1468.  * The opcode table 'votstrs' needs to be sorted on opcode frequency.
  1469.  * That is, AFTER we hash it with hash_...(), we want most-used opcodes
  1470.  * to come out of the hash table faster.
  1471.  *
  1472.  * I am sorry to inflict yet another VAX assembler on the world, but
  1473.  * RMS says we must do everything from scratch, to prevent pin-heads
  1474.  * restricting this software.
  1475.  */
  1476.  
  1477. /*
  1478.  * This is a vaguely modular set of routines in C to parse VAX
  1479.  * assembly code using DEC mnemonics. It is NOT un*x specific.
  1480.  *
  1481.  * The idea here is that the assembler has taken care of all:
  1482.  *   labels
  1483.  *   macros
  1484.  *   listing
  1485.  *   pseudo-ops
  1486.  *   line continuation
  1487.  *   comments
  1488.  *   condensing any whitespace down to exactly one space
  1489.  * and all we have to do is parse 1 line into a vax instruction
  1490.  * partially formed. We will accept a line, and deliver:
  1491.  *   an error message (hopefully empty)
  1492.  *   a skeleton VAX instruction (tree structure)
  1493.  *   textual pointers to all the operand expressions
  1494.  *   a warning message that notes a silly operand (hopefully empty)
  1495.  */
  1496.  
  1497. /*
  1498.  *        E D I T   H I S T O R Y
  1499.  *
  1500.  * 17may86 Dean Elsner. Bug if line ends immediately after opcode.
  1501.  * 30apr86 Dean Elsner. New vip_op() uses arg block so change call.
  1502.  *  6jan86 Dean Elsner. Crock vip_begin() to call vip_op_defaults().
  1503.  *  2jan86 Dean Elsner. Invent synthetic opcodes.
  1504.  *    Widen vax_opcodeT to 32 bits. Use a bit for VIT_OPCODE_SYNTHETIC,
  1505.  *    which means this is not a real opcode, it is like a macro; it will
  1506.  *    be relax()ed into 1 or more instructions.
  1507.  *    Use another bit for VIT_OPCODE_SPECIAL if the op-code is not optimised
  1508.  *    like a regular branch instruction. Option added to vip_begin():
  1509.  *    exclude    synthetic opcodes. Invent synthetic_votstrs[].
  1510.  * 31dec85 Dean Elsner. Invent vit_opcode_nbytes.
  1511.  *    Also make vit_opcode into a char[]. We now have n-byte vax opcodes,
  1512.  *    so caller's don't have to know the difference between a 1-byte & a
  1513.  *    2-byte op-code. Still need vax_opcodeT concept, so we know how
  1514.  *    big an object must be to hold an op.code.
  1515.  * 30dec85 Dean Elsner. Widen typedef vax_opcodeT in "vax-inst.h"
  1516.  *    because vax opcodes may be 16 bits. Our crufty C compiler was
  1517.  *    happily initialising 8-bit vot_codes with 16-bit numbers!
  1518.  *    (Wouldn't the 'phone company like to compress data so easily!)
  1519.  * 29dec85 Dean Elsner. New static table vax_operand_width_size[].
  1520.  *    Invented so we know hw many bytes a "I^#42" needs in its immediate
  1521.  *    operand. Revised struct vop in "vax-inst.h": explicitly include
  1522.  *    byte length of each operand, and it's letter-code datum type.
  1523.  * 17nov85 Dean Elsner. Name Change.
  1524.  *    Due to ar(1) truncating names, we learned the hard way that
  1525.  *    "vax-inst-parse.c" -> "vax-inst-parse." dropping the "o" off
  1526.  *    the archived object name. SO... we shortened the name of this
  1527.  *    source file, and changed the makefile.
  1528.  */
  1529.  
  1530. /* handle of the OPCODE hash table */
  1531. static struct hash_control *op_hash;
  1532.  
  1533. /*
  1534.  * In:    1 character, from "bdfghloqpw" being the data-type of an operand
  1535.  *    of a vax instruction.
  1536.  *
  1537.  * Out:    the length of an operand of that type, in bytes.
  1538.  *    Special branch operands types "-?!" have length 0.
  1539.  */
  1540.  
  1541. static const short int vax_operand_width_size[256] =
  1542. {
  1543.  
  1544. #define _ 0
  1545.   _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _,
  1546.   _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _,
  1547.   _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _,
  1548.   _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _,
  1549.   _, _, 1, _, 8, _, 4, 8, 16, _, _, _, 4, _, _, 16,    /* ..b.d.fgh...l..o */
  1550.   _, 8, _, _, _, _, _, 2, _, _, _, _, _, _, _, _,    /* .q.....w........ */
  1551.   _, _, 1, _, 8, _, 4, 8, 16, _, _, _, 4, _, _, 16,    /* ..b.d.fgh...l..o */
  1552.   _, 8, _, _, _, _, _, 2, _, _, _, _, _, _, _, _,    /* .q.....w........ */
  1553.   _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _,
  1554.   _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _,
  1555.   _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _,
  1556.   _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _,
  1557.   _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _,
  1558.   _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _,
  1559.   _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _,
  1560.   _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _};
  1561. #undef _
  1562.  
  1563. /*
  1564.  * This perversion encodes all the vax opcodes as a bunch of strings.
  1565.  * RMS says we should build our hash-table at run-time. Hmm.
  1566.  * Please would someone arrange these in decreasing frequency of opcode?
  1567.  * Because of the way hash_...() works, the most frequently used opcode
  1568.  * should be textually first and so on.
  1569.  *
  1570.  * Input for this table was 'vax.opcodes', awk(1)ed by 'vax.opcodes.c.awk' .
  1571.  * So change 'vax.opcodes', then re-generate this table.
  1572.  */
  1573.  
  1574. #include "opcode/vax.h"
  1575.  
  1576. /*
  1577.  * This is a table of optional op-codes. All of them represent
  1578.  * 'synthetic' instructions that seem popular.
  1579.  *
  1580.  * Here we make some pseudo op-codes. Every code has a bit set to say
  1581.  * it is synthetic. This lets you catch them if you want to
  1582.  * ban these opcodes. They are mnemonics for "elastic" instructions
  1583.  * that are supposed to assemble into the fewest bytes needed to do a
  1584.  * branch, or to do a conditional branch, or whatever.
  1585.  *
  1586.  * The opcode is in the usual place [low-order n*8 bits]. This means
  1587.  * that if you mask off the bucky bits, the usual rules apply about
  1588.  * how long the opcode is.
  1589.  *
  1590.  * All VAX branch displacements come at the end of the instruction.
  1591.  * For simple branches (1-byte opcode + 1-byte displacement) the last
  1592.  * operand is coded 'b?' where the "data type" '?' is a clue that we
  1593.  * may reverse the sense of the branch (complement lowest order bit)
  1594.  * and branch around a jump. This is by far the most common case.
  1595.  * That is why the VIT_OPCODE_SYNTHETIC bit is set: it says this is
  1596.  * a 0-byte op-code followed by 2 or more bytes of operand address.
  1597.  *
  1598.  * If the op-code has VIT_OPCODE_SPECIAL set, then we have a more unusual
  1599.  * case.
  1600.  *
  1601.  * For JBSB & JBR the treatment is the similar, except (1) we have a 'bw'
  1602.  * option before (2) we can directly JSB/JMP because there is no condition.
  1603.  * These operands have 'b-' as their access/data type.
  1604.  *
  1605.  * That leaves a bunch of random opcodes: JACBx, JxOBxxx. In these
  1606.  * cases, we do the same idea. JACBxxx are all marked with a 'b!'
  1607.  * JAOBxxx & JSOBxxx are marked with a 'b:'.
  1608.  *
  1609.  */
  1610. #if (VIT_OPCODE_SYNTHETIC != 0x80000000)
  1611. You have just broken the encoding below, which assumes the sign bit
  1612.   means 'I am an imaginary instruction'.
  1613. #endif
  1614.  
  1615. #if (VIT_OPCODE_SPECIAL != 0x40000000)
  1616.   You have just broken the encoding below, which assumes the 0x40 M bit means
  1617.   'I am not to be "optimised" the way normal branches are'.
  1618. #endif
  1619.  
  1620. static const struct vot
  1621.   synthetic_votstrs[] =
  1622. {
  1623.   {"jbsb",    {"b-", 0xC0000010}},        /* BSD 4.2 */
  1624. /* jsb used already */
  1625.   {"jbr",    {"b-", 0xC0000011}},        /* BSD 4.2 */
  1626.   {"jr",    {"b-", 0xC0000011}},        /* consistent */
  1627.   {"jneq",    {"b?", 0x80000012}},
  1628.   {"jnequ",    {"b?", 0x80000012}},
  1629.   {"jeql",    {"b?", 0x80000013}},
  1630.   {"jeqlu",    {"b?", 0x80000013}},
  1631.   {"jgtr",    {"b?", 0x80000014}},
  1632.   {"jleq",    {"b?", 0x80000015}},
  1633. /* un-used opcodes here */
  1634.   {"jgeq",    {"b?", 0x80000018}},
  1635.   {"jlss",    {"b?", 0x80000019}},
  1636.   {"jgtru",    {"b?", 0x8000001a}},
  1637.   {"jlequ",    {"b?", 0x8000001b}},
  1638.   {"jvc",    {"b?", 0x8000001c}},
  1639.   {"jvs",    {"b?", 0x8000001d}},
  1640.   {"jgequ",    {"b?", 0x8000001e}},
  1641.   {"jcc",    {"b?", 0x8000001e}},
  1642.   {"jlssu",    {"b?", 0x8000001f}},
  1643.   {"jcs",    {"b?", 0x8000001f}},
  1644.  
  1645.   {"jacbw",    {"rwrwmwb!", 0xC000003d}},
  1646.   {"jacbf",    {"rfrfmfb!", 0xC000004f}},
  1647.   {"jacbd",    {"rdrdmdb!", 0xC000006f}},
  1648.   {"jacbb",    {"rbrbmbb!", 0xC000009d}},
  1649.   {"jacbl",    {"rlrlmlb!", 0xC00000f1}},
  1650.   {"jacbg",    {"rgrgmgb!", 0xC0004ffd}},
  1651.   {"jacbh",    {"rhrhmhb!", 0xC0006ffd}},
  1652.  
  1653.   {"jbs",    {"rlvbb?", 0x800000e0}},
  1654.   {"jbc",    {"rlvbb?", 0x800000e1}},
  1655.   {"jbss",    {"rlvbb?", 0x800000e2}},
  1656.   {"jbcs",    {"rlvbb?", 0x800000e3}},
  1657.   {"jbsc",    {"rlvbb?", 0x800000e4}},
  1658.   {"jbcc",    {"rlvbb?", 0x800000e5}},
  1659.   {"jbssi",    {"rlvbb?", 0x800000e6}},
  1660.   {"jbcci",    {"rlvbb?", 0x800000e7}},
  1661.   {"jlbs",    {"rlb?", 0x800000e8}},
  1662.   {"jlbc",    {"rlb?", 0x800000e9}},
  1663.  
  1664.   {"jaoblss",    {"rlmlb:", 0xC00000f2}},
  1665.   {"jaobleq",    {"rlmlb:", 0xC00000f3}},
  1666.   {"jsobgeq",    {"mlb:", 0xC00000f4}},
  1667.   {"jsobgtr",    {"mlb:", 0xC00000f5}},
  1668.  
  1669. /* CASEx has no branch addresses in our conception of it. */
  1670. /* You should use ".word ..." statements after the "case ...". */
  1671.  
  1672.   {"", ""}            /* empty is end sentinel */
  1673.  
  1674. };                /* synthetic_votstrs */
  1675.  
  1676. /*
  1677.  *                  v i p _ b e g i n ( )
  1678.  *
  1679.  * Call me once before you decode any lines.
  1680.  * I decode votstrs into a hash table at op_hash (which I create).
  1681.  * I return an error text or null.
  1682.  * If you want, I will include the 'synthetic' jXXX instructions in the
  1683.  * instruction table.
  1684.  * You must nominate metacharacters for eg DEC's "#", "@", "^".
  1685.  */
  1686.  
  1687. static const char *
  1688. vip_begin (synthetic_too, immediate, indirect, displen)
  1689.      int synthetic_too;        /* 1 means include jXXX op-codes. */
  1690.      char *immediate, *indirect, *displen;
  1691. {
  1692.   const struct vot *vP;        /* scan votstrs */
  1693.   const char *retval = 0;    /* error text */
  1694.  
  1695.   op_hash = hash_new ();
  1696.  
  1697.   for (vP = votstrs; *vP->vot_name && !retval; vP++)
  1698.     retval = hash_insert (op_hash, vP->vot_name, (PTR) &vP->vot_detail);
  1699.  
  1700.   if (synthetic_too)
  1701.     for (vP = synthetic_votstrs; *vP->vot_name && !retval; vP++)
  1702.       retval = hash_insert (op_hash, vP->vot_name, (PTR) &vP->vot_detail);
  1703.  
  1704. #ifndef CONST_TABLE
  1705.   vip_op_defaults (immediate, indirect, displen);
  1706. #endif
  1707.  
  1708.   return retval;
  1709. }
  1710.  
  1711.  
  1712. /*
  1713.  *                  v i p ( )
  1714.  *
  1715.  * This converts a string into a vax instruction.
  1716.  * The string must be a bare single instruction in dec-vax (with BSD4 frobs)
  1717.  * format.
  1718.  * It provides some error messages: at most one fatal error message (which
  1719.  * stops the scan) and at most one warning message for each operand.
  1720.  * The vax instruction is returned in exploded form, since we have no
  1721.  * knowledge of how you parse (or evaluate) your expressions.
  1722.  * We do however strip off and decode addressing modes and operation
  1723.  * mnemonic.
  1724.  *
  1725.  * The exploded instruction is returned to a struct vit of your choice.
  1726.  * #include "vax-inst.h" to know what a struct vit is.
  1727.  *
  1728.  * This function's value is a string. If it is not "" then an internal
  1729.  * logic error was found: read this code to assign meaning to the string.
  1730.  * No argument string should generate such an error string:
  1731.  * it means a bug in our code, not in the user's text.
  1732.  *
  1733.  * You MUST have called vip_begin() once before using this function.
  1734.  */
  1735.  
  1736. static void
  1737. vip (vitP, instring)
  1738.      struct vit *vitP;        /* We build an exploded instruction here. */
  1739.      char *instring;        /* Text of a vax instruction: we modify. */
  1740. {
  1741.   /* How to bit-encode this opcode. */
  1742.   struct vot_wot *vwP;
  1743.   /* 1/skip whitespace.2/scan vot_how */
  1744.   char *p;
  1745.   char *q;
  1746.   /* counts number of operands seen */
  1747.   unsigned char count;
  1748.   /* scan operands in struct vit */
  1749.   struct vop *operandp;
  1750.   /* error over all operands */
  1751.   char *alloperr;
  1752.   /* Remember char, (we clobber it with '\0' temporarily). */
  1753.   char c;
  1754.   /* Op-code of this instruction. */
  1755.   vax_opcodeT oc;
  1756.  
  1757.   if (*instring == ' ')
  1758.     ++instring;            /* Skip leading whitespace. */
  1759.   for (p = instring; *p && *p != ' '; p++);;    /* MUST end in end-of-string or exactly 1 space. */
  1760.   /* Scanned up to end of operation-code. */
  1761.   /* Operation-code is ended with whitespace. */
  1762.   if (p - instring == 0)
  1763.     {
  1764.       vitP->vit_error = "No operator";
  1765.       count = 0;
  1766.       memset (vitP->vit_opcode, '\0', sizeof (vitP->vit_opcode));
  1767.     }
  1768.   else
  1769.     {
  1770.       c = *p;
  1771.       *p = '\0';
  1772.       /*
  1773.        * Here with instring pointing to what better be an op-name, and p
  1774.        * pointing to character just past that.
  1775.        * We trust instring points to an op-name, with no whitespace.
  1776.        */
  1777.       vwP = (struct vot_wot *) hash_find (op_hash, instring);
  1778.       *p = c;            /* Restore char after op-code. */
  1779.       if (vwP == 0)
  1780.     {
  1781.       vitP->vit_error = "Unknown operator";
  1782.       count = 0;
  1783.       memset (vitP->vit_opcode, '\0', sizeof (vitP->vit_opcode));
  1784.     }
  1785.       else
  1786.     {
  1787.       /*
  1788.        * We found a match! So lets pick up as many operands as the
  1789.        * instruction wants, and even gripe if there are too many.
  1790.        * We expect comma to seperate each operand.
  1791.        * We let instring track the text, while p tracks a part of the
  1792.        * struct vot.
  1793.        */
  1794.       /*
  1795.        * The lines below know about 2-byte opcodes starting FD,FE or FF.
  1796.        * They also understand synthetic opcodes. Note:
  1797.        * we return 32 bits of opcode, including bucky bits, BUT
  1798.        * an opcode length is either 8 or 16 bits for vit_opcode_nbytes.
  1799.        */
  1800.       oc = vwP->vot_code;    /* The op-code. */
  1801.       vitP->vit_opcode_nbytes = (oc & 0xFF) >= 0xFD ? 2 : 1;
  1802.       md_number_to_chars (vitP->vit_opcode, oc, 4);
  1803.       count = 0;        /* no operands seen yet */
  1804.       instring = p;        /* point just past operation code */
  1805.       alloperr = "";
  1806.       for (p = vwP->vot_how, operandp = vitP->vit_operand;
  1807.            !(alloperr && *alloperr) && *p;
  1808.            operandp++, p += 2)
  1809.         {
  1810.           /*
  1811.            * Here to parse one operand. Leave instring pointing just
  1812.            * past any one ',' that marks the end of this operand.
  1813.            */
  1814.           if (!p[1])
  1815.         as_fatal ("odd number of bytes in operand description");
  1816.           else if (*instring)
  1817.         {
  1818.           for (q = instring; (c = *q) && c != ','; q++)
  1819.             ;
  1820.           /*
  1821.            * Q points to ',' or '\0' that ends argument. C is that
  1822.            * character.
  1823.            */
  1824.           *q = 0;
  1825.           operandp->vop_width = p[1];
  1826.           operandp->vop_nbytes = vax_operand_width_size[p[1]];
  1827.           operandp->vop_access = p[0];
  1828.           vip_op (instring, operandp);
  1829.           *q = c;    /* Restore input text. */
  1830.           if (operandp->vop_error)
  1831.             alloperr = "Bad operand";
  1832.           instring = q + (c ? 1 : 0);    /* next operand (if any) */
  1833.           count++;    /*  won another argument, may have an operr */
  1834.         }
  1835.           else
  1836.         alloperr = "Not enough operands";
  1837.         }
  1838.       if (!*alloperr)
  1839.         {
  1840.           if (*instring == ' ')
  1841.         instring++;    /* Skip whitespace. */
  1842.           if (*instring)
  1843.         alloperr = "Too many operands";
  1844.         }
  1845.       vitP->vit_error = alloperr;
  1846.     }
  1847.     }
  1848.   vitP->vit_operands = count;
  1849. }
  1850.  
  1851. #ifdef test
  1852.  
  1853. /*
  1854.  * Test program for above.
  1855.  */
  1856.  
  1857. struct vit myvit;        /* build an exploded vax instruction here */
  1858. char answer[100];        /* human types a line of vax assembler here */
  1859. char *mybug;            /* "" or an internal logic diagnostic */
  1860. int mycount;            /* number of operands */
  1861. struct vop *myvop;        /* scan operands from myvit */
  1862. int mysynth;            /* 1 means want synthetic opcodes. */
  1863. char my_immediate[200];
  1864. char my_indirect[200];
  1865. char my_displen[200];
  1866.  
  1867. main ()
  1868. {
  1869.   char *p;
  1870.  
  1871.   printf ("0 means no synthetic instructions.   ");
  1872.   printf ("Value for vip_begin?  ");
  1873.   gets (answer);
  1874.   sscanf (answer, "%d", &mysynth);
  1875.   printf ("Synthetic opcodes %s be included.\n", mysynth ? "will" : "will not");
  1876.   printf ("enter immediate symbols eg enter #   ");
  1877.   gets (my_immediate);
  1878.   printf ("enter indirect symbols  eg enter @   ");
  1879.   gets (my_indirect);
  1880.   printf ("enter displen symbols   eg enter ^   ");
  1881.   gets (my_displen);
  1882.   if (p = vip_begin (mysynth, my_immediate, my_indirect, my_displen))
  1883.     {
  1884.       error ("vip_begin=%s", p);
  1885.     }
  1886.   printf ("An empty input line will quit you from the vax instruction parser\n");
  1887.   for (;;)
  1888.     {
  1889.       printf ("vax instruction: ");
  1890.       fflush (stdout);
  1891.       gets (answer);
  1892.       if (!*answer)
  1893.     {
  1894.       break;        /* out of for each input text loop */
  1895.     }
  1896.       vip (&myvit, answer);
  1897.       if (*myvit.vit_error)
  1898.     {
  1899.       printf ("ERR:\"%s\"\n", myvit.vit_error);
  1900.     }
  1901.       printf ("opcode=");
  1902.       for (mycount = myvit.vit_opcode_nbytes, p = myvit.vit_opcode;
  1903.        mycount;
  1904.        mycount--, p++
  1905.     )
  1906.     {
  1907.       printf ("%02x ", *p & 0xFF);
  1908.     }
  1909.       printf ("   operand count=%d.\n", mycount = myvit.vit_operands);
  1910.       for (myvop = myvit.vit_operand; mycount; mycount--, myvop++)
  1911.     {
  1912.       printf ("mode=%xx reg=%xx ndx=%xx len='%c'=%c%c%d. expr=\"",
  1913.           myvop->vop_mode, myvop->vop_reg, myvop->vop_ndx,
  1914.           myvop->vop_short, myvop->vop_access, myvop->vop_width,
  1915.           myvop->vop_nbytes);
  1916.       for (p = myvop->vop_expr_begin; p <= myvop->vop_expr_end; p++)
  1917.         {
  1918.           putchar (*p);
  1919.         }
  1920.       printf ("\"\n");
  1921.       if (myvop->vop_error)
  1922.         {
  1923.           printf ("  err:\"%s\"\n", myvop->vop_error);
  1924.         }
  1925.       if (myvop->vop_warn)
  1926.         {
  1927.           printf ("  wrn:\"%s\"\n", myvop->vop_warn);
  1928.         }
  1929.     }
  1930.     }
  1931.   vip_end ();
  1932.   exit (EXIT_SUCCESS);
  1933. }
  1934.  
  1935. #endif /* #ifdef test */
  1936.  
  1937. /* end of vax_ins_parse.c */
  1938.  
  1939. /* vax_reg_parse.c - convert a VAX register name to a number */
  1940.  
  1941. /* Copyright (C) 1987 Free Software Foundation, Inc. A part of GNU. */
  1942.  
  1943. /*
  1944.  *          v a x _ r e g _ p a r s e ( )
  1945.  *
  1946.  * Take 3 char.s, the last of which may be `\0` (non-existent)
  1947.  * and return the VAX register number that they represent.
  1948.  *
  1949.  * Return -1 if they don't form a register name. Good names return
  1950.  * a number from 0:15 inclusive.
  1951.  *
  1952.  * Case is not important in a name.
  1953.  *
  1954.  * Register names understood are:
  1955.  *
  1956.  *    R0
  1957.  *    R1
  1958.  *    R2
  1959.  *    R3
  1960.  *    R4
  1961.  *    R5
  1962.  *    R6
  1963.  *     R7
  1964.  *    R8
  1965.  *    R9
  1966.  *    R10
  1967.  *    R11
  1968.  *    R12    AP
  1969.  *    R13    FP
  1970.  *    R14    SP
  1971.  *    R15    PC
  1972.  *
  1973.  */
  1974.  
  1975. #include <ctype.h>
  1976. #define AP (12)
  1977. #define FP (13)
  1978. #define SP (14)
  1979. #define PC (15)
  1980.  
  1981. int                /* return -1 or 0:15 */
  1982. vax_reg_parse (c1, c2, c3)    /* 3 chars of register name */
  1983.      char c1, c2, c3;        /* c3 == 0 if 2-character reg name */
  1984. {
  1985.   int retval;        /* return -1:15 */
  1986.  
  1987.   retval = -1;
  1988.  
  1989.   if (isupper (c1))
  1990.     c1 = tolower (c1);
  1991.   if (isupper (c2))
  1992.     c2 = tolower (c2);
  1993.   if (isdigit (c2) && c1 == 'r')
  1994.     {
  1995.       retval = c2 - '0';
  1996.       if (isdigit (c3))
  1997.     {
  1998.       retval = retval * 10 + c3 - '0';
  1999.       retval = (retval > 15) ? -1 : retval;
  2000.       /* clamp the register value to 1 hex digit */
  2001.     }
  2002.       else if (c3)
  2003.     retval = -1;        /* c3 must be '\0' or a digit */
  2004.     }
  2005.   else if (c3)            /* There are no three letter regs */
  2006.     retval = -1;
  2007.   else if (c2 == 'p')
  2008.     {
  2009.       switch (c1)
  2010.     {
  2011.     case 's':
  2012.       retval = SP;
  2013.       break;
  2014.     case 'f':
  2015.       retval = FP;
  2016.       break;
  2017.     case 'a':
  2018.       retval = AP;
  2019.       break;
  2020.     default:
  2021.       retval = -1;
  2022.     }
  2023.     }
  2024.   else if (c1 == 'p' && c2 == 'c')
  2025.     retval = PC;
  2026.   else
  2027.     retval = -1;
  2028.   return (retval);
  2029. }
  2030.  
  2031. /*
  2032.  *               v i p _ o p ( )
  2033.  *
  2034.  * Parse a vax operand in DEC assembler notation.
  2035.  * For speed, expect a string of whitespace to be reduced to a single ' '.
  2036.  * This is the case for GNU AS, and is easy for other DEC-compatible
  2037.  * assemblers.
  2038.  *
  2039.  * Knowledge about DEC VAX assembler operand notation lives here.
  2040.  * This doesn't even know what a register name is, except it believes
  2041.  * all register names are 2 or 3 characters, and lets vax_reg_parse() say
  2042.  * what number each name represents.
  2043.  * It does, however, know that PC, SP etc are special registers so it can
  2044.  * detect addressing modes that are silly for those registers.
  2045.  *
  2046.  * Where possible, it delivers 1 fatal or 1 warning message if the operand
  2047.  * is suspect. Exactly what we test for is still evolving.
  2048.  */
  2049.  
  2050. /*
  2051.  *               B u g s
  2052.  *
  2053.  *    Arg block.
  2054.  *
  2055.  * There were a number of 'mismatched argument type' bugs to vip_op.
  2056.  * The most general solution is to typedef each (of many) arguments.
  2057.  * We used instead a typedef'd argument block. This is less modular
  2058.  * than using seperate return pointers for each result, but runs faster
  2059.  * on most engines, and seems to keep programmers happy. It will have
  2060.  * to be done properly if we ever want to use vip_op as a general-purpose
  2061.  * module (it was designed to be).
  2062.  *
  2063.  *    G^
  2064.  *
  2065.  * Doesn't support DEC "G^" format operands. These always take 5 bytes
  2066.  * to express, and code as modes 8F or 9F. Reason: "G^" deprives you of
  2067.  * optimising to (say) a "B^" if you are lucky in the way you link.
  2068.  * When someone builds a linker smart enough to convert "G^" to "B^", "W^"
  2069.  * whenever possible, then we should implement it.
  2070.  * If there is some other use for "G^", feel free to code it in!
  2071.  *
  2072.  *
  2073.  *    speed
  2074.  *
  2075.  * If I nested if()s more, I could avoid testing (*err) which would save
  2076.  * time, space and page faults. I didn't nest all those if()s for clarity
  2077.  * and because I think the mode testing can be re-arranged 1st to test the
  2078.  * commoner constructs 1st. Does anybody have statistics on this?
  2079.  *
  2080.  *
  2081.  *
  2082.  *    error messages
  2083.  *
  2084.  * In future, we should be able to 'compose' error messages in a scratch area
  2085.  * and give the user MUCH more informative error messages. Although this takes
  2086.  * a little more code at run-time, it will make this module much more self-
  2087.  * documenting. As an example of what sucks now: most error messages have
  2088.  * hardwired into them the DEC VAX metacharacters "#^@" which are nothing like
  2089.  * the Un*x characters "$`*", that most users will expect from this AS.
  2090.  */
  2091.  
  2092. /*
  2093.  * The input is a string, ending with '\0'.
  2094.  *
  2095.  * We also require a 'hint' of what kind of operand is expected: so
  2096.  * we can remind caller not to write into literals for instance.
  2097.  *
  2098.  * The output is a skeletal instruction.
  2099.  *
  2100.  * The algorithm has two parts.
  2101.  * 1. extract the syntactic features (parse off all the @^#-()+[] mode crud);
  2102.  * 2. express the @^#-()+[] as some parameters suited to further analysis.
  2103.  *
  2104.  * 2nd step is where we detect the googles of possible invalid combinations
  2105.  * a human (or compiler) might write. Note that if we do a half-way
  2106.  * decent assembler, we don't know how long to make (eg) displacement
  2107.  * fields when we first meet them (because they may not have defined values).
  2108.  * So we must wait until we know how many bits are needed for each address,
  2109.  * then we can know both length and opcodes of instructions.
  2110.  * For reason(s) above, we will pass to our caller a 'broken' instruction
  2111.  * of these major components, from which our caller can generate instructions:
  2112.  *  -  displacement length      I^ S^ L^ B^ W^ unspecified
  2113.  *  -  mode                     (many)
  2114.  *  -  register                 R0-R15 or absent
  2115.  *  -  index register           R0-R15 or absent
  2116.  *  -  expression text          what we don't parse
  2117.  *  -  error text(s)            why we couldn't understand the operand
  2118.  */
  2119.  
  2120. /*
  2121.  * To decode output of this, test errtxt. If errtxt[0] == '\0', then
  2122.  * we had no errors that prevented parsing. Also, if we ever report
  2123.  * an internal bug, errtxt[0] is set non-zero. So one test tells you
  2124.  * if the other outputs are to be taken seriously.
  2125.  */
  2126.  
  2127.  
  2128. /*
  2129.  * Because this module is useful for both VMS and UN*X style assemblers
  2130.  * and because of the variety of UN*X assemblers we must recognise
  2131.  * the different conventions for assembler operand notation. For example
  2132.  * VMS says "#42" for immediate mode, while most UN*X say "$42".
  2133.  * We permit arbitrary sets of (single) characters to represent the
  2134.  * 3 concepts that DEC writes '#', '@', '^'.
  2135.  */
  2136.  
  2137. /* character tests */
  2138. #define VIP_IMMEDIATE 01    /* Character is like DEC # */
  2139. #define VIP_INDIRECT  02    /* Char is like DEC @ */
  2140. #define VIP_DISPLEN   04    /* Char is like DEC ^ */
  2141.  
  2142. #define IMMEDIATEP(c)    (vip_metacharacters [(c)&0xff]&VIP_IMMEDIATE)
  2143. #define INDIRECTP(c)    (vip_metacharacters [(c)&0xff]&VIP_INDIRECT)
  2144. #define DISPLENP(c)    (vip_metacharacters [(c)&0xff]&VIP_DISPLEN)
  2145.  
  2146. /* We assume 8 bits per byte. Use vip_op_defaults() to set these up BEFORE we
  2147.  * are ever called.
  2148.  */
  2149.  
  2150. #if defined(CONST_TABLE)
  2151. #define _ 0,
  2152. #define I VIP_IMMEDIATE,
  2153. #define S VIP_INDIRECT,
  2154. #define D VIP_DISPLEN,
  2155. static const char
  2156. vip_metacharacters[256] =
  2157. {
  2158.   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _    /* ^@ ^A ^B ^C ^D ^E ^F ^G ^H ^I ^J ^K ^L ^M ^N ^O*/
  2159.   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _    /* ^P ^Q ^R ^S ^T ^U ^V ^W ^X ^Y ^Z ^[ ^\ ^] ^^ ^_ */
  2160.   _ _ _ _ I _ _ _ _ _ S _ _ _ _ _    /* sp !  "  #  $  %  & '  (  )  *  +  ,  -  .  / */
  2161.   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _    /*0  1  2  3  4  5  6  7  8  9  :  ;  <  =  >  ?*/
  2162.   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _    /*@  A  B  C  D  E  F  G  H  I  J  K  L  M  N  O*/
  2163.   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _    /*P  Q  R  S  T  U  V  W  X  Y  Z  [  \  ]  ^  _*/
  2164.   D _ _ _ _ _ _ _ _ _ _ _ _ _ _ _    /*`  a  b  c  d  e  f  g  h  i  j  k  l  m  n  o*/
  2165.   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _    /*p  q  r  s  t  u  v  w  x  y  z  {  |  }  ~  ^?*/
  2166.  
  2167.   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  2168.   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  2169.   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  2170.   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  2171.   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  2172.   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  2173.   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  2174.   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  2175. };
  2176. #undef _
  2177. #undef I
  2178. #undef S
  2179. #undef D
  2180. #else
  2181. static char vip_metacharacters[256];
  2182.  
  2183. static void
  2184. vip_op_1 (bit, syms)
  2185.      int bit;
  2186.      char *syms;
  2187. {
  2188.   unsigned char t;
  2189.  
  2190.   while (t = *syms++)
  2191.     vip_metacharacters[t] |= bit;
  2192. }
  2193.  
  2194. /* Can be called any time.  More arguments may appear in future.  */
  2195. static void 
  2196. vip_op_defaults (immediate, indirect, displen)
  2197.      char *immediate;
  2198.      char *indirect;
  2199.      char *displen;
  2200. {
  2201.   vip_op_1 (VIP_IMMEDIATE, immediate);
  2202.   vip_op_1 (VIP_INDIRECT, indirect);
  2203.   vip_op_1 (VIP_DISPLEN, displen);
  2204. }
  2205.  
  2206. #endif
  2207.  
  2208.  
  2209. /*
  2210.  * Dec defines the semantics of address modes (and values)
  2211.  * by a two-letter code, explained here.
  2212.  *
  2213.  *   letter 1:   access type
  2214.  *
  2215.  *     a         address calculation - no data access, registers forbidden
  2216.  *     b         branch displacement
  2217.  *     m         read - let go of bus - write back    "modify"
  2218.  *     r         read
  2219.  *     v         bit field address: like 'a' but registers are OK
  2220.  *     w         write
  2221.  *     space     no operator (eg ".long foo") [our convention]
  2222.  *
  2223.  *   letter 2:   data type (i.e. width, alignment)
  2224.  *
  2225.  *     b         byte
  2226.  *     d         double precision floating point (D format)
  2227.  *     f         single precision floating point (F format)
  2228.  *     g         G format floating
  2229.  *     h         H format floating
  2230.  *     l         longword
  2231.  *     o         octaword
  2232.  *     q         quadword
  2233.  *     w         word
  2234.  *     ?     simple synthetic branch operand
  2235.  *     -     unconditional synthetic JSB/JSR operand
  2236.  *     !     complex synthetic branch operand
  2237.  *
  2238.  * The '-?!' letter 2's are not for external consumption. They are used
  2239.  * for various assemblers. Generally, all unknown widths are assumed 0.
  2240.  * We don't limit your choice of width character.
  2241.  *
  2242.  * DEC operands are hard work to parse. For example, '@' as the first
  2243.  * character means indirect (deferred) mode but elswhere it is a shift
  2244.  * operator.
  2245.  * The long-winded explanation of how this is supposed to work is
  2246.  * cancelled. Read a DEC vax manual.
  2247.  * We try hard not to parse anything that MIGHT be part of the expression
  2248.  * buried in that syntax. For example if we see @...(Rn) we don't check
  2249.  * for '-' before the '(' because mode @-(Rn) does not exist.
  2250.  *
  2251.  * After parsing we have:
  2252.  *
  2253.  * at                     1 if leading '@' (or Un*x '*')
  2254.  * len                    takes one value from " bilsw". eg B^ -> 'b'.
  2255.  * hash                   1 if leading '#' (or Un*x '$')
  2256.  * expr_begin, expr_end   the expression we did not parse
  2257.  *                        even though we don't interpret it, we make use
  2258.  *                        of its presence or absence.
  2259.  * sign                   -1: -(Rn)    0: absent    +1: (Rn)+
  2260.  * paren                  1 if () are around register
  2261.  * reg                    major register number 0:15    -1 means absent
  2262.  * ndx                    index register number 0:15    -1 means absent
  2263.  *
  2264.  * Again, I dare not explain it: just trace ALL the code!
  2265.  */
  2266.  
  2267. static void
  2268. vip_op (optext, vopP)
  2269.      /* user's input string e.g.: "@B^foo@bar(AP)[FP]:" */
  2270.      char *optext;
  2271.      /* Input fields: vop_access, vop_width.
  2272.     Output fields: _ndx, _reg, _mode, _short, _warn,
  2273.     _error _expr_begin, _expr_end, _nbytes.
  2274.     vop_nbytes : number of bytes in a datum. */
  2275.      struct vop *vopP;
  2276. {
  2277.   /* track operand text forward */
  2278.   char *p;
  2279.   /* track operand text backward */
  2280.   char *q;
  2281.   /* 1 if leading '@' ('*') seen */
  2282.   int at;
  2283.   /* one of " bilsw" */
  2284.   char len;
  2285.   /* 1 if leading '#' ('$') seen */
  2286.   int hash;
  2287.   /* -1, 0 or +1 */
  2288.   int sign = 0;
  2289.   /* 1 if () surround register */
  2290.   int paren = 0;
  2291.   /* register number, -1:absent */
  2292.   int reg = 0;
  2293.   /* index register number -1:absent */
  2294.   int ndx = 0;
  2295.   /* report illegal operand, ""==OK */
  2296.   /* " " is a FAKE error: means we won */
  2297.   /* ANY err that begins with ' ' is a fake. */
  2298.   /* " " is converted to "" before return */
  2299.   char *err;
  2300.   /* warn about weird modes pf address */
  2301.   char *wrn;
  2302.   /* preserve q in case we backup */
  2303.   char *oldq = NULL;
  2304.   /* build up 4-bit operand mode here */
  2305.   /* note: index mode is in ndx, this is */
  2306.   /* the major mode of operand address */
  2307.   int mode = 0;
  2308.   /*
  2309.    * Notice how we move wrong-arg-type bugs INSIDE this module: if we
  2310.    * get the types wrong below, we lose at compile time rather than at
  2311.    * lint or run time.
  2312.    */
  2313.   char access;            /* vop_access. */
  2314.   char width;            /* vop_width. */
  2315.  
  2316.   access = vopP->vop_access;
  2317.   width = vopP->vop_width;
  2318.   /* None of our code bugs (yet), no user text errors, no warnings
  2319.      even.  */
  2320.   err = wrn = 0;
  2321.  
  2322.   p = optext;
  2323.  
  2324.   if (*p == ' ')        /* Expect all whitespace reduced to ' '. */
  2325.     p++;            /* skip over whitespace */
  2326.  
  2327.   if (at = INDIRECTP (*p))
  2328.     {                /* 1 if *p=='@'(or '*' for Un*x) */
  2329.       p++;            /* at is determined */
  2330.       if (*p == ' ')        /* Expect all whitespace reduced to ' '. */
  2331.     p++;            /* skip over whitespace */
  2332.     }
  2333.  
  2334.   /*
  2335.    * This code is subtle. It tries to detect all legal (letter)'^'
  2336.    * but it doesn't waste time explicitly testing for premature '\0' because
  2337.    * this case is rejected as a mismatch against either (letter) or '^'.
  2338.    */
  2339.   {
  2340.     char c;
  2341.  
  2342.     c = *p;
  2343.     if (isupper (c))
  2344.       c = tolower (c);
  2345.     if (DISPLENP (p[1]) && strchr ("bilws", len = c))
  2346.       p += 2;            /* skip (letter) '^' */
  2347.     else            /* no (letter) '^' seen */
  2348.       len = ' ';        /* len is determined */
  2349.   }
  2350.  
  2351.   if (*p == ' ')        /* Expect all whitespace reduced to ' '. */
  2352.     p++;            /* skip over whitespace */
  2353.  
  2354.   if (hash = IMMEDIATEP (*p))    /* 1 if *p=='#' ('$' for Un*x) */
  2355.     p++;            /* hash is determined */
  2356.  
  2357.   /*
  2358.    * p points to what may be the beginning of an expression.
  2359.    * We have peeled off the front all that is peelable.
  2360.    * We know at, len, hash.
  2361.    *
  2362.    * Lets point q at the end of the text and parse that (backwards).
  2363.    */
  2364.  
  2365.   for (q = p; *q; q++)
  2366.     ;
  2367.   q--;                /* now q points at last char of text */
  2368.  
  2369.   if (*q == ' ' && q >= p)    /* Expect all whitespace reduced to ' '. */
  2370.     q--;
  2371.   /* reverse over whitespace, but don't */
  2372.   /* run back over *p */
  2373.  
  2374.   /*
  2375.    * As a matter of policy here, we look for [Rn], although both Rn and S^#
  2376.    * forbid [Rn]. This is because it is easy, and because only a sick
  2377.    * cyborg would have [...] trailing an expression in a VAX-like assembler.
  2378.    * A meticulous parser would first check for Rn followed by '(' or '['
  2379.    * and not parse a trailing ']' if it found another. We just ban expressions
  2380.    * ending in ']'.
  2381.    */
  2382.   if (*q == ']')
  2383.     {
  2384.       while (q >= p && *q != '[')
  2385.     q--;
  2386.       /* either q<p or we got matching '[' */
  2387.       if (q < p)
  2388.     err = "no '[' to match ']'";
  2389.       else
  2390.     {
  2391.       /*
  2392.        * Confusers like "[]" will eventually lose with a bad register
  2393.        * name error. So again we don't need to check for early '\0'.
  2394.        */
  2395.       if (q[3] == ']')
  2396.         ndx = vax_reg_parse (q[1], q[2], 0);
  2397.       else if (q[4] == ']')
  2398.         ndx = vax_reg_parse (q[1], q[2], q[3]);
  2399.       else
  2400.         ndx = -1;
  2401.       /*
  2402.        * Since we saw a ']' we will demand a register name in the [].
  2403.        * If luser hasn't given us one: be rude.
  2404.        */
  2405.       if (ndx < 0)
  2406.         err = "bad register in []";
  2407.       else if (ndx == PC)
  2408.         err = "[PC] index banned";
  2409.       else
  2410.         q--;        /* point q just before "[...]" */
  2411.     }
  2412.     }
  2413.   else
  2414.     ndx = -1;            /* no ']', so no iNDeX register */
  2415.  
  2416.   /*
  2417.    * If err = "..." then we lost: run away.
  2418.    * Otherwise ndx == -1 if there was no "[...]".
  2419.    * Otherwise, ndx is index register number, and q points before "[...]".
  2420.    */
  2421.  
  2422.   if (*q == ' ' && q >= p)    /* Expect all whitespace reduced to ' '. */
  2423.     q--;
  2424.   /* reverse over whitespace, but don't */
  2425.   /* run back over *p */
  2426.   if (!err || !*err)
  2427.     {
  2428.       sign = 0;            /* no ()+ or -() seen yet */
  2429.  
  2430.       if (q > p + 3 && *q == '+' && q[-1] == ')')
  2431.     {
  2432.       sign = 1;        /* we saw a ")+" */
  2433.       q--;            /* q points to ')' */
  2434.     }
  2435.  
  2436.       if (*q == ')' && q > p + 2)
  2437.     {
  2438.       paren = 1;        /* assume we have "(...)" */
  2439.       while (q >= p && *q != '(')
  2440.         q--;
  2441.       /* either q<p or we got matching '(' */
  2442.       if (q < p)
  2443.         err = "no '(' to match ')'";
  2444.       else
  2445.         {
  2446.           /*
  2447.            * Confusers like "()" will eventually lose with a bad register
  2448.            * name error. So again we don't need to check for early '\0'.
  2449.            */
  2450.           if (q[3] == ')')
  2451.         reg = vax_reg_parse (q[1], q[2], 0);
  2452.           else if (q[4] == ')')
  2453.         reg = vax_reg_parse (q[1], q[2], q[3]);
  2454.           else
  2455.         reg = -1;
  2456.           /*
  2457.            * Since we saw a ')' we will demand a register name in the ')'.
  2458.            * This is nasty: why can't our hypothetical assembler permit
  2459.            * parenthesised expressions? BECAUSE I AM LAZY! That is why.
  2460.            * Abuse luser if we didn't spy a register name.
  2461.            */
  2462.           if (reg < 0)
  2463.         {
  2464.           /* JF allow parenthasized expressions.  I hope this works */
  2465.           paren = 0;
  2466.           while (*q != ')')
  2467.             q++;
  2468.           /* err = "unknown register in ()"; */
  2469.         }
  2470.           else
  2471.         q--;        /* point just before '(' of "(...)" */
  2472.           /*
  2473.            * If err == "..." then we lost. Run away.
  2474.            * Otherwise if reg >= 0 then we saw (Rn).
  2475.            */
  2476.         }
  2477.       /*
  2478.        * If err == "..." then we lost.
  2479.        * Otherwise paren==1 and reg = register in "()".
  2480.        */
  2481.     }
  2482.       else
  2483.     paren = 0;
  2484.       /*
  2485.        * If err == "..." then we lost.
  2486.        * Otherwise, q points just before "(Rn)", if any.
  2487.        * If there was a "(...)" then paren==1, and reg is the register.
  2488.        */
  2489.  
  2490.       /*
  2491.        * We should only seek '-' of "-(...)" if:
  2492.        *   we saw "(...)"                    paren == 1
  2493.        *   we have no errors so far          ! *err
  2494.        *   we did not see '+' of "(...)+"    sign < 1
  2495.        * We don't check len. We want a specific error message later if
  2496.        * user tries "x^...-(Rn)". This is a feature not a bug.
  2497.        */
  2498.       if (!err || !*err)
  2499.     {
  2500.       if (paren && sign < 1)/* !sign is adequate test */
  2501.         {
  2502.           if (*q == '-')
  2503.         {
  2504.           sign = -1;
  2505.           q--;
  2506.         }
  2507.         }
  2508.       /*
  2509.        * We have back-tracked over most
  2510.        * of the crud at the end of an operand.
  2511.        * Unless err, we know: sign, paren. If paren, we know reg.
  2512.        * The last case is of an expression "Rn".
  2513.        * This is worth hunting for if !err, !paren.
  2514.        * We wouldn't be here if err.
  2515.        * We remember to save q, in case we didn't want "Rn" anyway.
  2516.        */
  2517.       if (!paren)
  2518.         {
  2519.           if (*q == ' ' && q >= p)    /* Expect all whitespace reduced to ' '. */
  2520.         q--;
  2521.           /* reverse over whitespace, but don't */
  2522.           /* run back over *p */
  2523.           if (q > p && q < p + 3)    /* room for Rn or Rnn exactly? */
  2524.         reg = vax_reg_parse (p[0], p[1], q < p + 2 ? 0 : p[2]);
  2525.           else
  2526.         reg = -1;    /* always comes here if no register at all */
  2527.           /*
  2528.            * Here with a definitive reg value.
  2529.            */
  2530.           if (reg >= 0)
  2531.         {
  2532.           oldq = q;
  2533.           q = p - 1;
  2534.         }
  2535.         }
  2536.     }
  2537.     }
  2538.   /*
  2539.    * have reg. -1:absent; else 0:15
  2540.    */
  2541.  
  2542.   /*
  2543.    * We have:  err, at, len, hash, ndx, sign, paren, reg.
  2544.    * Also, any remaining expression is from *p through *q inclusive.
  2545.    * Should there be no expression, q==p-1. So expression length = q-p+1.
  2546.    * This completes the first part: parsing the operand text.
  2547.    */
  2548.  
  2549.   /*
  2550.    * We now want to boil the data down, checking consistency on the way.
  2551.    * We want:  len, mode, reg, ndx, err, p, q, wrn, bug.
  2552.    * We will deliver a 4-bit reg, and a 4-bit mode.
  2553.    */
  2554.  
  2555.   /*
  2556.    * Case of branch operand. Different. No L^B^W^I^S^ allowed for instance.
  2557.    *
  2558.    * in:  at    ?
  2559.    *      len    ?
  2560.    *      hash    ?
  2561.    *      p:q    ?
  2562.    *      sign  ?
  2563.    *      paren    ?
  2564.    *      reg   ?
  2565.    *      ndx   ?
  2566.    *
  2567.    * out: mode  0
  2568.    *      reg   -1
  2569.    *      len    ' '
  2570.    *      p:q    whatever was input
  2571.    *      ndx    -1
  2572.    *      err    " "         or error message, and other outputs trashed
  2573.    */
  2574.   /* branch operands have restricted forms */
  2575.   if ((!err || !*err) && access == 'b')
  2576.     {
  2577.       if (at || hash || sign || paren || ndx >= 0 || reg >= 0 || len != ' ')
  2578.     err = "invalid branch operand";
  2579.       else
  2580.     err = " ";
  2581.     }
  2582.  
  2583.   /* Since nobody seems to use it: comment this 'feature'(?) out for now. */
  2584. #ifdef NEVER
  2585.   /*
  2586.    * Case of stand-alone operand. e.g. ".long foo"
  2587.    *
  2588.    * in:  at    ?
  2589.    *      len    ?
  2590.    *      hash    ?
  2591.    *      p:q    ?
  2592.    *      sign  ?
  2593.    *      paren    ?
  2594.    *      reg   ?
  2595.    *      ndx   ?
  2596.    *
  2597.    * out: mode  0
  2598.    *      reg   -1
  2599.    *      len    ' '
  2600.    *      p:q    whatever was input
  2601.    *      ndx    -1
  2602.    *      err    " "         or error message, and other outputs trashed
  2603.    */
  2604.   if ((!err || !*err) && access == ' ')
  2605.     {
  2606.       if (at)
  2607.     err = "address prohibits @";
  2608.       else if (hash)
  2609.     err = "address prohibits #";
  2610.       else if (sign)
  2611.     {
  2612.       if (sign < 0)
  2613.         err = "address prohibits -()";
  2614.       else
  2615.         err = "address prohibits ()+";
  2616.     }
  2617.       else if (paren)
  2618.     err = "address prohibits ()";
  2619.       else if (ndx >= 0)
  2620.     err = "address prohibits []";
  2621.       else if (reg >= 0)
  2622.     err = "address prohibits register";
  2623.       else if (len != ' ')
  2624.     err = "address prohibits displacement length specifier";
  2625.       else
  2626.     {
  2627.       err = " ";    /* succeed */
  2628.       mode = 0;
  2629.     }
  2630.     }
  2631. #endif /*#Ifdef NEVER*/
  2632.  
  2633.   /*
  2634.    * Case of S^#.
  2635.    *
  2636.    * in:  at       0
  2637.    *      len      's'               definition
  2638.    *      hash     1              demand
  2639.    *      p:q                        demand not empty
  2640.    *      sign     0                 by paren==0
  2641.    *      paren    0             by "()" scan logic because "S^" seen
  2642.    *      reg      -1                or nn by mistake
  2643.    *      ndx      -1
  2644.    *
  2645.    * out: mode     0
  2646.    *      reg      -1
  2647.    *      len      's'
  2648.    *      exp
  2649.    *      ndx      -1
  2650.    */
  2651.   if ((!err || !*err) && len == 's')
  2652.     {
  2653.       if (!hash || paren || at || ndx >= 0)
  2654.     err = "invalid operand of S^#";
  2655.       else
  2656.     {
  2657.       if (reg >= 0)
  2658.         {
  2659.           /*
  2660.            * SHIT! we saw S^#Rnn ! put the Rnn back in
  2661.            * expression. KLUDGE! Use oldq so we don't
  2662.            * need to know exact length of reg name.
  2663.            */
  2664.           q = oldq;
  2665.           reg = 0;
  2666.         }
  2667.       /*
  2668.        * We have all the expression we will ever get.
  2669.        */
  2670.       if (p > q)
  2671.         err = "S^# needs expression";
  2672.       else if (access == 'r')
  2673.         {
  2674.           err = " ";    /* WIN! */
  2675.           mode = 0;
  2676.         }
  2677.       else
  2678.         err = "S^# may only read-access";
  2679.     }
  2680.     }
  2681.  
  2682.   /*
  2683.    * Case of -(Rn), which is weird case.
  2684.    *
  2685.    * in:  at       0
  2686.    *      len      '
  2687.    *      hash     0
  2688.    *      p:q      q<p
  2689.    *      sign     -1                by definition
  2690.    *      paren    1              by definition
  2691.    *      reg      present           by definition
  2692.    *      ndx      optional
  2693.    *
  2694.    * out: mode     7
  2695.    *      reg      present
  2696.    *      len      ' '
  2697.    *      exp      ""                enforce empty expression
  2698.    *      ndx      optional          warn if same as reg
  2699.    */
  2700.   if ((!err || !*err) && sign < 0)
  2701.     {
  2702.       if (len != ' ' || hash || at || p <= q)
  2703.     err = "invalid operand of -()";
  2704.       else
  2705.     {
  2706.       err = " ";        /* win */
  2707.       mode = 7;
  2708.       if (reg == PC)
  2709.         wrn = "-(PC) unpredictable";
  2710.       else if (reg == ndx)
  2711.         wrn = "[]index same as -()register: unpredictable";
  2712.     }
  2713.     }
  2714.  
  2715.   /*
  2716.    * We convert "(Rn)" to "@Rn" for our convenience.
  2717.    * (I hope this is convenient: has someone got a better way to parse this?)
  2718.    * A side-effect of this is that "@Rn" is a valid operand.
  2719.    */
  2720.   if (paren && !sign && !hash && !at && len == ' ' && p > q)
  2721.     {
  2722.       at = 1;
  2723.       paren = 0;
  2724.     }
  2725.  
  2726.   /*
  2727.    * Case of (Rn)+, which is slightly different.
  2728.    *
  2729.    * in:  at
  2730.    *      len      ' '
  2731.    *      hash     0
  2732.    *      p:q      q<p
  2733.    *      sign     +1                by definition
  2734.    *      paren    1              by definition
  2735.    *      reg      present           by definition
  2736.    *      ndx      optional
  2737.    *
  2738.    * out: mode     8+@
  2739.    *      reg      present
  2740.    *      len      ' '
  2741.    *      exp      ""                enforce empty expression
  2742.    *      ndx      optional          warn if same as reg
  2743.    */
  2744.   if ((!err || !*err) && sign > 0)
  2745.     {
  2746.       if (len != ' ' || hash || p <= q)
  2747.     err = "invalid operand of ()+";
  2748.       else
  2749.     {
  2750.       err = " ";        /* win */
  2751.       mode = 8 + (at ? 1 : 0);
  2752.       if (reg == PC)
  2753.         wrn = "(PC)+ unpredictable";
  2754.       else if (reg == ndx)
  2755.         wrn = "[]index same as ()+register: unpredictable";
  2756.     }
  2757.     }
  2758.  
  2759.   /*
  2760.    * Case of #, without S^.
  2761.    *
  2762.    * in:  at
  2763.    *      len      ' ' or 'i'
  2764.    *      hash     1              by definition
  2765.    *      p:q
  2766.    *      sign     0
  2767.    *      paren    0
  2768.    *      reg      absent
  2769.    *      ndx      optional
  2770.    *
  2771.    * out: mode     8+@
  2772.    *      reg      PC
  2773.    *      len      ' ' or 'i'
  2774.    *      exp
  2775.    *      ndx      optional
  2776.    */
  2777.   if ((!err || !*err) && hash)
  2778.     {
  2779.       if (len != 'i' && len != ' ')
  2780.     err = "# conflicts length";
  2781.       else if (paren)
  2782.     err = "# bars register";
  2783.       else
  2784.     {
  2785.       if (reg >= 0)
  2786.         {
  2787.           /*
  2788.            * SHIT! we saw #Rnn! Put the Rnn back into the expression.
  2789.            * By using oldq, we don't need to know how long Rnn was.
  2790.            * KLUDGE!
  2791.            */
  2792.           q = oldq;
  2793.           reg = -1;        /* no register any more */
  2794.         }
  2795.       err = " ";        /* win */
  2796.  
  2797.       /* JF a bugfix, I think! */
  2798.       if (at && access == 'a')
  2799.         vopP->vop_nbytes = 4;
  2800.  
  2801.       mode = (at ? 9 : 8);
  2802.       reg = PC;
  2803.       if ((access == 'm' || access == 'w') && !at)
  2804.         wrn = "writing or modifying # is unpredictable";
  2805.     }
  2806.     }
  2807.   /*
  2808.    * If !*err, then        sign == 0
  2809.    *                       hash == 0
  2810.    */
  2811.  
  2812.   /*
  2813.    * Case of Rn. We seperate this one because it has a few special
  2814.    * errors the remaining modes lack.
  2815.    *
  2816.    * in:  at       optional
  2817.    *      len      ' '
  2818.    *      hash     0             by program logic
  2819.    *      p:q      empty
  2820.    *      sign     0                 by program logic
  2821.    *      paren    0             by definition
  2822.    *      reg      present           by definition
  2823.    *      ndx      optional
  2824.    *
  2825.    * out: mode     5+@
  2826.    *      reg      present
  2827.    *      len      ' '               enforce no length
  2828.    *      exp      ""                enforce empty expression
  2829.    *      ndx      optional          warn if same as reg
  2830.    */
  2831.   if ((!err || !*err) && !paren && reg >= 0)
  2832.     {
  2833.       if (len != ' ')
  2834.     err = "length not needed";
  2835.       else if (at)
  2836.     {
  2837.       err = " ";        /* win */
  2838.       mode = 6;        /* @Rn */
  2839.     }
  2840.       else if (ndx >= 0)
  2841.     err = "can't []index a register, because it has no address";
  2842.       else if (access == 'a')
  2843.     err = "a register has no address";
  2844.       else
  2845.     {
  2846.       /*
  2847.        * Idea here is to detect from length of datum
  2848.        * and from register number if we will touch PC.
  2849.        * Warn if we do.
  2850.        * vop_nbytes is number of bytes in operand.
  2851.        * Compute highest byte affected, compare to PC0.
  2852.        */
  2853.       if ((vopP->vop_nbytes + reg * 4) > 60)
  2854.         wrn = "PC part of operand unpredictable";
  2855.       err = " ";        /* win */
  2856.       mode = 5;        /* Rn */
  2857.     }
  2858.     }
  2859.   /*
  2860.    * If !*err,        sign  == 0
  2861.    *                  hash  == 0
  2862.    *                  paren == 1  OR reg==-1
  2863.    */
  2864.  
  2865.   /*
  2866.    * Rest of cases fit into one bunch.
  2867.    *
  2868.    * in:  at       optional
  2869.    *      len      ' ' or 'b' or 'w' or 'l'
  2870.    *      hash     0             by program logic
  2871.    *      p:q      expected          (empty is not an error)
  2872.    *      sign     0                 by program logic
  2873.    *      paren    optional
  2874.    *      reg      optional
  2875.    *      ndx      optional
  2876.    *
  2877.    * out: mode     10 + @ + len
  2878.    *      reg      optional
  2879.    *      len      ' ' or 'b' or 'w' or 'l'
  2880.    *      exp                        maybe empty
  2881.    *      ndx      optional          warn if same as reg
  2882.    */
  2883.   if (!err || !*err)
  2884.     {
  2885.       err = " ";        /* win (always) */
  2886.       mode = 10 + (at ? 1 : 0);
  2887.       switch (len)
  2888.     {
  2889.     case 'l':
  2890.       mode += 2;
  2891.     case 'w':
  2892.       mode += 2;
  2893.     case ' ':        /* assumed B^ until our caller changes it */
  2894.     case 'b':
  2895.       break;
  2896.     }
  2897.     }
  2898.  
  2899.   /*
  2900.    * here with completely specified     mode
  2901.    *                    len
  2902.    *                    reg
  2903.    *                    expression   p,q
  2904.    *                    ndx
  2905.    */
  2906.  
  2907.   if (*err == ' ')
  2908.     err = 0;            /* " " is no longer an error */
  2909.  
  2910.   vopP->vop_mode = mode;
  2911.   vopP->vop_reg = reg;
  2912.   vopP->vop_short = len;
  2913.   vopP->vop_expr_begin = p;
  2914.   vopP->vop_expr_end = q;
  2915.   vopP->vop_ndx = ndx;
  2916.   vopP->vop_error = err;
  2917.   vopP->vop_warn = wrn;
  2918. }
  2919.  
  2920. /*
  2921.  
  2922.   Summary of vip_op outputs.
  2923.  
  2924.   mode    reg    len    ndx
  2925.   (Rn) => @Rn
  2926.   {@}Rn            5+@    n    ' '    optional
  2927.   branch operand        0    -1    ' '    -1
  2928.   S^#foo            0    -1    's'    -1
  2929.   -(Rn)            7    n    ' '    optional
  2930.   {@}(Rn)+        8+@    n    ' '    optional
  2931.   {@}#foo, no S^        8+@    PC    " i"    optional
  2932.   {@}{q^}{(Rn)}        10+@+q    option    " bwl"    optional
  2933.  
  2934.   */
  2935.  
  2936. #ifdef TEST            /* #Define to use this testbed. */
  2937.  
  2938. /*
  2939.  * Follows a test program for this function.
  2940.  * We declare arrays non-local in case some of our tiny-minded machines
  2941.  * default to small stacks. Also, helps with some debuggers.
  2942.  */
  2943.  
  2944. #include <stdio.h>
  2945.  
  2946. char answer[100];        /* human types into here */
  2947. char *p;            /*  */
  2948. char *myerr;
  2949. char *mywrn;
  2950. char *mybug;
  2951. char myaccess;
  2952. char mywidth;
  2953. char mymode;
  2954. char myreg;
  2955. char mylen;
  2956. char *myleft;
  2957. char *myright;
  2958. char myndx;
  2959. int my_operand_length;
  2960. char my_immediate[200];
  2961. char my_indirect[200];
  2962. char my_displen[200];
  2963.  
  2964. main ()
  2965. {
  2966.   printf ("enter immediate symbols eg enter #   ");
  2967.   gets (my_immediate);
  2968.   printf ("enter indirect symbols  eg enter @   ");
  2969.   gets (my_indirect);
  2970.   printf ("enter displen symbols   eg enter ^   ");
  2971.   gets (my_displen);
  2972.   vip_op_defaults (my_immediate, my_indirect, my_displen);
  2973.   for (;;)
  2974.     {
  2975.       printf ("access,width (eg 'ab' or 'wh') [empty line to quit] :  ");
  2976.       fflush (stdout);
  2977.       gets (answer);
  2978.       if (!answer[0])
  2979.     exit (EXIT_SUCCESS);
  2980.       myaccess = answer[0];
  2981.       mywidth = answer[1];
  2982.       switch (mywidth)
  2983.     {
  2984.     case 'b':
  2985.       my_operand_length = 1;
  2986.       break;
  2987.     case 'd':
  2988.       my_operand_length = 8;
  2989.       break;
  2990.     case 'f':
  2991.       my_operand_length = 4;
  2992.       break;
  2993.     case 'g':
  2994.       my_operand_length = 16;
  2995.       break;
  2996.     case 'h':
  2997.       my_operand_length = 32;
  2998.       break;
  2999.     case 'l':
  3000.       my_operand_length = 4;
  3001.       break;
  3002.     case 'o':
  3003.       my_operand_length = 16;
  3004.       break;
  3005.     case 'q':
  3006.       my_operand_length = 8;
  3007.       break;
  3008.     case 'w':
  3009.       my_operand_length = 2;
  3010.       break;
  3011.     case '!':
  3012.     case '?':
  3013.     case '-':
  3014.       my_operand_length = 0;
  3015.       break;
  3016.  
  3017.     default:
  3018.       my_operand_length = 2;
  3019.       printf ("I dn't understand access width %c\n", mywidth);
  3020.       break;
  3021.     }
  3022.       printf ("VAX assembler instruction operand: ");
  3023.       fflush (stdout);
  3024.       gets (answer);
  3025.       mybug = vip_op (answer, myaccess, mywidth, my_operand_length,
  3026.               &mymode, &myreg, &mylen, &myleft, &myright, &myndx,
  3027.               &myerr, &mywrn);
  3028.       if (*myerr)
  3029.     {
  3030.       printf ("error: \"%s\"\n", myerr);
  3031.       if (*mybug)
  3032.         printf (" bug: \"%s\"\n", mybug);
  3033.     }
  3034.       else
  3035.     {
  3036.       if (*mywrn)
  3037.         printf ("warning: \"%s\"\n", mywrn);
  3038.       mumble ("mode", mymode);
  3039.       mumble ("register", myreg);
  3040.       mumble ("index", myndx);
  3041.       printf ("width:'%c'  ", mylen);
  3042.       printf ("expression: \"");
  3043.       while (myleft <= myright)
  3044.         putchar (*myleft++);
  3045.       printf ("\"\n");
  3046.     }
  3047.     }
  3048. }
  3049.  
  3050. mumble (text, value)
  3051.      char *text;
  3052.      int value;
  3053. {
  3054.   printf ("%s:", text);
  3055.   if (value >= 0)
  3056.     printf ("%xx", value);
  3057.   else
  3058.     printf ("ABSENT");
  3059.   printf ("  ");
  3060. }
  3061.  
  3062. #endif /* ifdef TEST */
  3063.  
  3064. /* end: vip_op.c */
  3065.  
  3066. const int md_short_jump_size = 3;
  3067. const int md_long_jump_size = 6;
  3068. const int md_reloc_size = 8;    /* Size of relocation record */
  3069.  
  3070. void
  3071. md_create_short_jump (ptr, from_addr, to_addr, frag, to_symbol)
  3072.      char *ptr;
  3073.      addressT from_addr, to_addr;
  3074.      fragS *frag;
  3075.      symbolS *to_symbol;
  3076. {
  3077.   valueT offset;
  3078.  
  3079.   offset = to_addr - (from_addr + 1);
  3080.   *ptr++ = 0x31;
  3081.   md_number_to_chars (ptr, offset, 2);
  3082. }
  3083.  
  3084. void
  3085. md_create_long_jump (ptr, from_addr, to_addr, frag, to_symbol)
  3086.      char *ptr;
  3087.      addressT from_addr, to_addr;
  3088.      fragS *frag;
  3089.      symbolS *to_symbol;
  3090. {
  3091.   valueT offset;
  3092.  
  3093.   offset = to_addr - S_GET_VALUE (to_symbol);
  3094.   *ptr++ = 0x17;
  3095.   *ptr++ = 0x9F;
  3096.   md_number_to_chars (ptr, offset, 4);
  3097.   fix_new (frag, ptr - frag->fr_literal, 4, to_symbol, (long) 0, 0, NO_RELOC);
  3098. }
  3099.  
  3100. #ifdef OBJ_VMS
  3101. CONST char *md_shortopts = "d:STt:V+1h:Hv::";
  3102. #else
  3103. CONST char *md_shortopts = "d:STt:V";
  3104. #endif
  3105. struct option md_longopts[] = {
  3106.   {NULL, no_argument, NULL, 0}
  3107. };
  3108. size_t md_longopts_size = sizeof(md_longopts);
  3109.  
  3110. int
  3111. md_parse_option (c, arg)
  3112.      int c;
  3113.      char *arg;
  3114. {
  3115.   switch (c)
  3116.     {
  3117.     case 'S':
  3118.       as_warn ("SYMBOL TABLE not implemented");
  3119.       break;
  3120.  
  3121.     case 'T':
  3122.       as_warn ("TOKEN TRACE not implemented");
  3123.       break;
  3124.  
  3125.     case 'd':
  3126.       as_warn ("Displacement length %s ignored!", arg);
  3127.       break;
  3128.  
  3129.     case 't':
  3130.       as_warn ("I don't need or use temp. file \"%s\".", arg);
  3131.       break;
  3132.  
  3133.     case 'V':
  3134.       as_warn ("I don't use an interpass file! -V ignored");
  3135.       break;
  3136.  
  3137. #ifdef OBJ_VMS
  3138.     case '+':            /* For g++.  Hash any name > 31 chars long. */
  3139.       flag_hash_long_names = 1;
  3140.       break;
  3141.  
  3142.     case '1':            /* For backward compatibility */
  3143.       flag_one = 1;
  3144.       break;
  3145.  
  3146.     case 'H':            /* Show new symbol after hash truncation */
  3147.       flag_show_after_trunc = 1;
  3148.       break;
  3149.  
  3150.     case 'h':            /* No hashing of mixed-case names */
  3151.       {
  3152.     extern char vms_name_mapping;
  3153.     vms_name_mapping = atoi (arg);
  3154.     flag_no_hash_mixed_case = 1;
  3155.       }
  3156.       break;
  3157.  
  3158.     case 'v':
  3159.       {
  3160.     extern char *compiler_version_string;
  3161.     if (!arg || !*arg || access (arg, 0) == 0)
  3162.       return 0;        /* have caller show the assembler version */
  3163.     compiler_version_string = arg;
  3164.       }
  3165.       break;
  3166. #endif
  3167.  
  3168.     default:
  3169.       return 0;
  3170.     }
  3171.  
  3172.   return 1;
  3173. }
  3174.  
  3175. void
  3176. md_show_usage (stream)
  3177.      FILE *stream;
  3178. {
  3179.   fprintf(stream, "\
  3180. VAX options:\n\
  3181. -d LENGTH        ignored\n\
  3182. -J            ignored\n\
  3183. -S            ignored\n\
  3184. -t FILE            ignored\n\
  3185. -T            ignored\n\
  3186. -V            ignored\n");
  3187. #ifdef OBJ_VMS
  3188.   fprintf (stream, "\
  3189. VMS options:\n\
  3190. -+            hash encode names longer than 31 characters\n\
  3191. -1            `const' handling compatible with gcc 1.x\n\
  3192. -H            show new symbol after hash truncation\n\
  3193. -h NUM            don't hash mixed-case names, and adjust case:\n\
  3194.             0 = upper, 2 = lower, 3 = preserve case\n\
  3195. -v\"VERSION\"        code being assembled was produced by compiler \"VERSION\"\n");
  3196. #endif
  3197. }
  3198.  
  3199. /* We have no need to default values of symbols.  */
  3200.  
  3201. /* ARGSUSED */
  3202. symbolS *
  3203. md_undefined_symbol (name)
  3204.      char *name;
  3205. {
  3206.   return 0;
  3207. }
  3208.  
  3209. /* Parse an operand that is machine-specific.
  3210.    We just return without modifying the expression if we have nothing
  3211.    to do.  */
  3212.  
  3213. /* ARGSUSED */
  3214. void
  3215. md_operand (expressionP)
  3216.      expressionS *expressionP;
  3217. {
  3218. }
  3219.  
  3220. /* Round up a section size to the appropriate boundary.  */
  3221. valueT
  3222. md_section_align (segment, size)
  3223.      segT segment;
  3224.      valueT size;
  3225. {
  3226.   return size;            /* Byte alignment is fine */
  3227. }
  3228.  
  3229. /* Exactly what point is a PC-relative offset relative TO?
  3230.    On the vax, they're relative to the address of the offset, plus
  3231.    its size. (??? Is this right?  FIXME-SOON) */
  3232. long
  3233. md_pcrel_from (fixP)
  3234.      fixS *fixP;
  3235. {
  3236.   return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
  3237. }
  3238.  
  3239. /* end of tc-vax.c */
  3240.